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

Commit f374541

Browse files
author
Constanza Heath
committed
Updating version and modifying Makefiles
Signed-off-by: Constanza Heath <[email protected]>
1 parent a8dc738 commit f374541

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ all:
1515
clean:
1616
$(MAKE) -C lib clean
1717
$(MAKE) -C tests clean
18-
18+
$(RM) *~
1919

Makefile.conf

+7-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@
77
################################################################################
88

99
CFLAGS = -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
1318
export CFLAGS
1419

1520
################################################################################

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
================================================================================
33

4-
TinyCrypt Cryptographic Library v0.1.5
4+
TinyCrypt Cryptographic Library
55

66
================================================================================
77

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.0
1+
0.1.5

lib/Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@ OBJS = utils.o \
2020

2121
all: $(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
2534
aes_decrypt.o: aes_decrypt.c aes.h utils.o

0 commit comments

Comments
 (0)