This repository was archived by the owner on Mar 5, 2024. It is now read-only.
File tree 5 files changed +19
-5
lines changed
5 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 15
15
clean :
16
16
$(MAKE ) -C lib clean
17
17
$(MAKE ) -C tests clean
18
-
18
+ $(RM) *~
19
19
Original file line number Diff line number Diff line change 7
7
################################################################################
8
8
9
9
CFLAGS = -Os -std=c99 -Wall -Wextra -I../lib -v -I../tests/include
10
- CC=gcc
11
10
12
- export CC
11
+ ifdef ComSpec
12
+ RM=del /F /Q
13
+ else
14
+ RM=rm -f
15
+ endif
16
+
17
+ export RM
13
18
export CFLAGS
14
19
15
20
################################################################################
Original file line number Diff line number Diff line change 1
1
2
2
================================================================================
3
3
4
- TinyCrypt Cryptographic Library v0.1.5
4
+ TinyCrypt Cryptographic Library
5
5
6
6
================================================================================
7
7
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 \
20
20
21
21
all : $(OBJS )
22
22
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
+
23
32
24
33
# Dependencies
25
34
aes_decrypt.o : aes_decrypt.c aes.h utils.o
You can’t perform that action at this time.
0 commit comments