summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-01-20 14:13:30 +0100
committerMartin Mares <mj@ucw.cz>2000-01-20 14:13:30 +0100
commit7211be1cffdee84fd15e8b6b2a07a644948f1455 (patch)
tree1a5a56054e5212cff23442bc39eddd4f916b9640 /tools
parent9fac310d1a4e46f4bcc70177e59cbf93763ef479 (diff)
downloadbird-7211be1cffdee84fd15e8b6b2a07a644948f1455.tar
bird-7211be1cffdee84fd15e8b6b2a07a644948f1455.zip
Configure, link and use the readline library.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.in2
-rw-r--r--tools/Rules.in1
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 56d6514..1dcb9bc 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -21,7 +21,7 @@ $(exedir)/bird: $(addsuffix /all.o, $(static-dirs)) conf/all.o lib/birdlib.a
$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
$(exedir)/birdc: client/all.o lib/birdlib.a
- $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
+ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) $(CLIENT_LIBS)
.dir-stamp:
mkdir -p $(static-dirs) $(client-dirs)
diff --git a/tools/Rules.in b/tools/Rules.in
index fc3d2b1..4820182 100644
--- a/tools/Rules.in
+++ b/tools/Rules.in
@@ -20,6 +20,7 @@ CPPFLAGS=-I$(root-rel) -I$(srcdir) @CPPFLAGS@
CFLAGS=$(CPPFLAGS) @CFLAGS@
LDFLAGS=
LIBS=@LIBS@
+CLIENT_LIBS=@CLIENT_LIBS@
CC=@CC@
M4=@M4@
BISON=@BISON@