Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Fixing Makefile tabs and test's make clean
Browse files Browse the repository at this point in the history
Signed-off-by: Constanza Heath <[email protected]>
  • Loading branch information
Constanza Heath committed Dec 12, 2015
1 parent f374541 commit d9524df
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ all:
clean:
$(MAKE) -C lib clean
$(MAKE) -C tests clean
$(RM) *~
$(RM) *~

9 changes: 1 addition & 8 deletions lib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,7 @@ OBJS = utils.o \
all: $(OBJS)

clean:
$(RM) *.o *~
$(RM) test_aes
$(RM) test_cbc_mode
$(RM) test_ctr_mode
$(RM) test_hmac
$(RM) test_hmac_prng
$(RM) test_sha256

$(RM) *.o *.gch core *dump *~

# Dependencies
aes_decrypt.o: aes_decrypt.c aes.h utils.o
Expand Down
9 changes: 9 additions & 0 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ all: test_aes \
test_hmac_prng \
test_sha256

clean:
$(RM) *.o *~
$(RM) test_aes
$(RM) test_cbc_mode
$(RM) test_ctr_mode
$(RM) test_hmac
$(RM) test_hmac_prng
$(RM) test_sha256
$(RM) ../lib/*.o *~

# Dependencies
test_aes: test_aes.o ../lib/aes_encrypt.o \
Expand Down

0 comments on commit d9524df

Please sign in to comment.