You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
280 B
20 lines
280 B
6 years ago
|
|
||
|
all: clean lazy-rebuild test
|
||
|
|
||
|
clean:
|
||
|
rm -rf test
|
||
6 years ago
|
rm -f lazy-rebuild
|
||
6 years ago
|
|
||
|
lazy-rebuild:
|
||
|
go build -o $@
|
||
4 years ago
|
strip $@
|
||
|
|
||
6 years ago
|
test:
|
||
|
mkdir test
|
||
|
touch test/file1.txt
|
||
|
touch test/file2
|
||
|
touch test/collision
|
||
|
touch test/file3.txt.longext
|
||
|
echo unique > test/uni.txt
|
||
|
./lazy-rebuild --long test
|