This repository was archived by the owner on Mar 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +19
-5
lines changed Expand file tree Collapse file tree 5 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 1515clean :
1616 $(MAKE ) -C lib clean
1717 $(MAKE ) -C tests clean
18-
18+ $(RM) *~
1919
Original file line number Diff line number Diff line change 77################################################################################
88
99CFLAGS = -Os -std=c99 -Wall -Wextra -I../lib -v -I../tests/include
10- CC=gcc
1110
12- export CC
11+ ifdef ComSpec
12+ RM=del /F /Q
13+ else
14+ RM=rm -f
15+ endif
16+
17+ export RM
1318export CFLAGS
1419
1520################################################################################
Original file line number Diff line number Diff line change 11
22================================================================================
33
4- TinyCrypt Cryptographic Library v0.1.5
4+ TinyCrypt Cryptographic Library
55
66================================================================================
77
Original file line number Diff line number Diff line change 1- 0.1.0
1+ 0.1.5
Original file line number Diff line number Diff line change @@ -20,6 +20,15 @@ OBJS = utils.o \
2020
2121all : $(OBJS )
2222
23+ clean :
24+ $(RM) *.o *~
25+ $(RM) test_aes
26+ $(RM) test_cbc_mode
27+ $(RM) test_ctr_mode
28+ $(RM) test_hmac
29+ $(RM) test_hmac_prng
30+ $(RM) test_sha256
31+
2332
2433# Dependencies
2534aes_decrypt.o : aes_decrypt.c aes.h utils.o
You can’t perform that action at this time.
0 commit comments