summaryrefslogtreecommitdiff
path: root/lib/examples/Makefile
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2010-10-04 01:31:01 +0200
committerLinus Nordberg <linus@nordu.net>2010-10-04 01:31:01 +0200
commit0065f2622cc3bdf1e5cfd322fbb890a25afef8d8 (patch)
tree078425b00c8cd28eef9d9dd5ab9ef2d714a4ae01 /lib/examples/Makefile
parentdcfb8bca7400c5db4fafbed7aa9395e5f3277d9b (diff)
WIP -- reading configuration.
Diffstat (limited to 'lib/examples/Makefile')
-rw-r--r--lib/examples/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/examples/Makefile b/lib/examples/Makefile
index 4802c4b..cf3441b 100644
--- a/lib/examples/Makefile
+++ b/lib/examples/Makefile
@@ -1,6 +1,6 @@
SPECIAL =
#SPECIAL += -DUSE_REQUEST_OBJECT
-#SPECIAL += -DUSE_CONFIG_FILE
+SPECIAL += -DUSE_CONFIG_FILE
CFLAGS = -Wall -g -I ../include $(SPECIAL)
@@ -9,7 +9,7 @@ HFILES = ../include/radsec/radsec.h ../include/radsec/radsec-impl.h
all: client-blocking
client-blocking: client-blocking.c ../libradsec.a $(HFILES)
- $(CC) $(CFLAGS) -o $@ $< -L /usr/lib/freeradius -lfreeradius-radius -L .. -lradsec -L /usr/local/lib -levent_core
+ $(CC) $(CFLAGS) -o $@ $< -lconfuse -L /usr/lib/freeradius -lfreeradius-radius -L .. -lradsec -L /usr/local/lib -levent_core
clean:
-rm *.o *.gch client-blocking