aboutsummaryrefslogtreecommitdiff
path: root/ext2load/Makefile
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2009-04-26 14:57:08 +0200
committerGuido Günther <agx@sigxcpu.org>2009-04-26 15:26:25 +0200
commit3c8b9481088b546af3f0fd161a432ba0f0cb682e (patch)
treee6a83124f6becb94abc6dfbd03b8bd6400170f81 /ext2load/Makefile
parentd8a73fe012567565113419dc0c4678df5abe5bc5 (diff)
Move libc functions into a pseudo libc away from libarc
Diffstat (limited to 'ext2load/Makefile')
-rw-r--r--ext2load/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext2load/Makefile b/ext2load/Makefile
index f39ea51..3a06f08 100644
--- a/ext2load/Makefile
+++ b/ext2load/Makefile
@@ -15,8 +15,10 @@ ARCINCLUDEDIR = ../arclib
ARCLIBDIR = ../arclib
ARCLIB = $(ARCLIBDIR)/libarc.a
+LIBC = ../common/libc.a
+
OBJECTS = loader.o ext2io.o conffile.o
-LIBS = $(EXT2LIB) $(ARCLIB)
+LIBS = $(EXT2LIB) $(ARCLIB) $(LIBC)
TARGETS = ext2load
CFLAGS = -O2 -I$(COMMONDIR) -I$(ARCINCLUDEDIR) -I$(E2FSINCLUDEDIR) \