Commit bee7c066 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

all.bash: make clean before rebuilding.

parent 5b4109b4
...@@ -3,12 +3,14 @@ set -eux ...@@ -3,12 +3,14 @@ set -eux
rm -f fuse/version.gen.go rm -f fuse/version.gen.go
for d in fuse benchmark zipfs unionfs \ for target in "clean" "" "$@" ; do
for d in fuse benchmark zipfs unionfs \
example/hello example/loopback example/zipfs \ example/hello example/loopback example/zipfs \
example/bulkstat example/multizip example/unionfs \ example/bulkstat example/multizip example/unionfs \
example/autounionfs ; \ example/autounionfs ; \
do do
gomake -C $d "$@" gomake -C $d $target
done
done done
for d in fuse zipfs unionfs for d in fuse zipfs unionfs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment