From 719a8ab1d878b5dbe133002314dd66613d0a7622 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sun, 8 Feb 2015 19:04:25 +0000 Subject: [PATCH] Debugging symbols --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index deef3c2..aed4660 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: auth-client auth-server gen-key gen-keypair -%.o: %.cc *.h - g++ -I/usr/local/include -std=c++11 -c -o $@ $< +%.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