Files
funstraw/Makefile

17 lines
476 B
Makefile
Raw Normal View History

2015-02-06 16:27:47 +00:00
all: auth-client auth-server gen-key gen-keypair
2015-02-04 21:48:49 +00:00
2015-02-05 12:55:48 +00:00
%.o: %.cc
2015-02-05 16:36:25 +00:00
g++ -std=c++11 -c -o $@ $<
2015-02-05 11:50:47 +00:00
2015-02-06 16:27:47 +00:00
auth-client: auth-client.o crypto.o tlv.o
g++ -o auth-client auth-client.o crypto.o tlv.o -lsodium
auth-server: auth-server.o crypto.o tlv.o
2015-02-06 16:27:47 +00:00
g++ -o auth-server auth-server.o crypto.o tlv.o -lsodium
2015-02-05 12:55:48 +00:00
gen-key: gen-key.o crypto.o tlv.o
2015-02-06 16:27:47 +00:00
g++ -o gen-key gen-key.o crypto.o tlv.o -lsodium
gen-keypair: gen-keypair.o crypto.o tlv.o
2015-02-06 16:27:47 +00:00
g++ -o gen-keypair gen-keypair.o crypto.o tlv.o -lsodium