summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorvenaas <venaas>2007-02-15 12:26:26 +0000
committervenaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf>2007-02-15 12:26:26 +0000
commit6fd042c5e1c780facc94a77d4f924921ee6b09a1 (patch)
tree887bf5432b109a082b74580944e90c7101fa2152 /Makefile
parentd5fef766258bec5659b56e82bf7281a792fc59f6 (diff)
fixed clientwr bug when receiving new request while not waiting for one
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@58 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index ebca44f..6a72e8e 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,10 @@
CFLAGS = -g -Wall -pedantic -pthread
LDFLAGS = -lssl
-OBJ = util.o
+OBJ = util.o radsecproxy.o
all: radsecproxy
-radsecproxy: $(OBJ)
- $(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy radsecproxy.c
+radsecproxy: $(OBJ) radsecproxy.o
+ $(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy
clean:
rm -f $(OBJ) radsecproxy