link in makefile and ignore exe

pull/2/head
Jacob Barthelmeh 2015-02-09 18:40:16 -07:00
parent 16fb8d36c3
commit 2ac9675f32
3 changed files with 8 additions and 2 deletions

6
.gitignore vendored
View File

@ -41,12 +41,18 @@
/psk/server-psk /psk/server-psk
/psk/server-tcp /psk/server-tcp
/tls/client-callback
/tls/client-tls-nonblocking /tls/client-tls-nonblocking
/tls/client-tls-resume /tls/client-tls-resume
/tls/client-tls /tls/client-tls
/tls/client-tcp /tls/client-tcp
/tls/server-callback
/tls/server-tls-nonblocking /tls/server-tls-nonblocking
/tls/server-tls-threaded /tls/server-tls-threaded
/tls/server-tls /tls/server-tls
/tls/server-tcp /tls/server-tcp
crypto/3des/3des-file-encrypt
crypto/aes/aes-file-encrypt
crypto/camellia/camellia-encrypt

View File

@ -1,6 +1,6 @@
CC=gcc CC=gcc
CFLAGS=-Wall CFLAGS=-Wall
LIBS= -lcyassl LIBS= -lwolfssl
3des-file-encrypt: 3des-file-encrypt.o 3des-file-encrypt: 3des-file-encrypt.o
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) $(CC) -o $@ $^ $(CFLAGS) $(LIBS)

View File

@ -1,6 +1,6 @@
CC=gcc CC=gcc
CFLAGS=-Wall CFLAGS=-Wall
LIBS= -lcyassl LIBS= -lwolfssl
aes-file-encrypt: aes-file-encrypt.o aes-file-encrypt: aes-file-encrypt.o
$(CC) -o $@ $^ $(CFLAGS) $(LIBS) $(CC) -o $@ $^ $(CFLAGS) $(LIBS)