Starting over

This commit is contained in:
Ian Gulliver
2016-09-25 15:56:37 -07:00
parent a78c8461d6
commit 6da1c57c36
18 changed files with 158 additions and 1514 deletions

View File

@@ -1,16 +1,2 @@
all: auth-client auth-server gen-key gen-keypair
%.o: %.cc *.h Makefile
g++ -I/usr/local/include -std=c++11 -g -c -o $@ $<
auth-client: auth-client.o crypto.o tlv.o
g++ -L/usr/local/lib -o auth-client auth-client.o crypto.o tlv.o -lsodium -levent
auth-server: auth-server.o crypto.o tlv.o
g++ -L/usr/local/lib -o auth-server auth-server.o crypto.o tlv.o -lsodium -levent
gen-key: gen-key.o crypto.o tlv.o
g++ -L/usr/local/lib -o gen-key gen-key.o crypto.o tlv.o -lsodium -levent
gen-keypair: gen-keypair.o crypto.o tlv.o
g++ -L/usr/local/lib -o gen-keypair gen-keypair.o crypto.o tlv.o -lsodium -levent
all:
bazel build //...