From 685fc8b25a8a55d04098da11d1ae05a4f7661431 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sat, 1 Nov 2014 14:52:43 +0000 Subject: [PATCH] bxconf has its own set of required libraries, different to the client itself. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@520 13b04d17-f746-0410-82c6-800466cd88b0 --- bx-conf/Makefile.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bx-conf/Makefile.in b/bx-conf/Makefile.in index 5cec412..050f20e 100644 --- a/bx-conf/Makefile.in +++ b/bx-conf/Makefile.in @@ -158,13 +158,15 @@ PROGRAM = $(topdir)/bxconfigure OBJS = ds_cell.o file_cpy.o +BXCONF_LIBS = -lcurses + .c.o: $(CC) $(CPPFLAGS) $(CFLAGS) -c $< all: $(PROGRAM) $(PROGRAM): $(OBJS) - $(CC) -o $(PROGRAM) $(OBJS) $(LIBS) + $(CC) -o $(PROGRAM) $(OBJS) $(BXCONF_LIBS) clean: $(RM) $(OBJS) $(PROGRAM) *~