We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d05ac commit c69d098Copy full SHA for c69d098
3 files changed
crypto/aes/Makefile
@@ -1,8 +1,8 @@
1
CC=gcc
2
CFLAGS=-Wall
3
-LIBS= -lwolfssl
+LIBS= -lwolfssl -lm
4
5
-all: aes-file-encrypt aescfb-file-encrypt aesctr-file-encrypt
+all: aes-file-encrypt aescfb-file-encrypt aesctr-file-encrypt aesgcm-file-encrypt
6
7
aes-file-encrypt: aes-file-encrypt.o
8
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
@@ -13,7 +13,10 @@ aescfb-file-encrypt: aescfb-file-encrypt.o
13
aesctr-file-encrypt: aesctr-file-encrypt.o
14
15
16
+aesgcm-file-encrypt: aesgcm-file-encrypt.o
17
+ $(CC) -o $@ $^ $(CFLAGS) $(LIBS)
18
+
19
.PHONY: clean
20
21
clean:
- rm -f *.o aes-file-encrypt aescfb-file-encrypt aesctr-file-encrypt
22
+ rm -f *.o aes-file-encrypt aescfb-file-encrypt aesctr-file-encrypt aesgcm-file-encrypt text*
0 commit comments