diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | lib/Makefile | 2 | ||||
-rw-r--r-- | tests/Makefile | 12 |
3 files changed, 1 insertions, 15 deletions
@@ -15,5 +15,5 @@ all: clean: $(MAKE) -C lib clean $(MAKE) -C tests clean - /bin/rm -f *~ + diff --git a/lib/Makefile b/lib/Makefile index 04a20b6..ea37084 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -20,8 +20,6 @@ OBJS = utils.o \ all: $(OBJS) -clean: - /bin/rm -f *.exe *.o *.gch core *dump *~ # Dependencies aes_decrypt.o: aes_decrypt.c aes.h utils.o diff --git a/tests/Makefile b/tests/Makefile index 02126f6..4dc96f1 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -16,18 +16,6 @@ all: test_aes \ test_hmac_prng \ test_sha256 -clean: - /bin/rm -f *.o *~ - /bin/rm -f test_aes - /bin/rm -f test_cbc_mode - /bin/rm -f test_ctr_mode - /bin/rm -f test_hmac - /bin/rm -f test_hmac_prng - /bin/rm -f test_sha256 - - - - # Dependencies test_aes: test_aes.o ../lib/aes_encrypt.o \ |