diff options
author | venaas <venaas> | 2007-02-15 12:26:26 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2007-02-15 12:26:26 +0000 |
commit | 6fd042c5e1c780facc94a77d4f924921ee6b09a1 (patch) | |
tree | 887bf5432b109a082b74580944e90c7101fa2152 /Makefile | |
parent | d5fef766258bec5659b56e82bf7281a792fc59f6 (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-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |