summaryrefslogtreecommitdiffstats
path: root/loader2/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'loader2/Makefile')
-rw-r--r--loader2/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/loader2/Makefile b/loader2/Makefile
index 60b58eef8..973282174 100644
--- a/loader2/Makefile
+++ b/loader2/Makefile
@@ -7,9 +7,14 @@ else
TARGET=depend $(PROGS)
endif
+# glib - for utility stuff
GLIB = $(shell pkg-config --libs glib-2.0)
CFLAGS += $(shell pkg-config --cflags glib-2.0)
+# dhcp library flags
+DHCP = $(shell pkg-config --libs libdhcp)
+CFLAGS += $(shell pkg-config --cflags libdhcp)
+
SLANGLIB = -lslang
NEWTLIB = -lnewt
ISYSLIB = ../isys/libisys.a
@@ -121,7 +126,7 @@ loader-net.o: loader.c
loader: loader.o $(OBJS) $(NETOBJS)
$(CC) -g $(STATIC) -o $@ $^ -lpopt \
$(HWLIBS) $(ISYSLIB) $(GUNZIP) $(UNICODELIB) \
- -lpump -lresolv $(NEWTLIB) $(SLANGLIB) $(DMLIB) $(GLIB)
+ -lresolv $(NEWTLIB) $(SLANGLIB) $(DMLIB) $(GLIB) $(DHCP) -lm
clean:
rm -f *.o *~ .depend init ctype.c mkctype \