diff options
author | David Phillips <david@sighup.nz> | 2017-08-23 23:18:27 +1200 |
---|---|---|
committer | David Phillips <david@sighup.nz> | 2017-08-23 23:18:27 +1200 |
commit | d35f255cadd6b24ccb0ccc34c40ac786a669366b (patch) | |
tree | dc6bd829a172b6712cee98d27ae7490dab9f12b7 /Makefile | |
parent | b6c95565e58cf6e367e3d29069ea628eb4ba3b6b (diff) | |
download | sand-leek-d35f255cadd6b24ccb0ccc34c40ac786a669366b.tar.xz |
Don't use GNU extensions on rm
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ sand-leek: sand-leek.o onion_base32.o key_update.o $(CC) -o $@ $^ $(LDFLAGS) clean: - rm -vf sand-leek *.o + rm -f sand-leek *.o test: all @./test/run-tests.sh |