summaryrefslogtreecommitdiff
path: root/usrbin/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'usrbin/Makefile')
-rw-r--r--usrbin/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/usrbin/Makefile b/usrbin/Makefile
index 9a40cbc..67e63fa 100644
--- a/usrbin/Makefile
+++ b/usrbin/Makefile
@@ -1,5 +1,7 @@
TARGET = usrbin_blob.o
+LIB = ../lib/lib.a
+
SRCS = $(wildcard *.c)
ASMS = $(wildcard *.s)
OBJS = $(SRCS:.c=.o) $(ASMS:.s=.o)
@@ -23,7 +25,7 @@ build: $(TARGET)
$(CC) -c -o $*.o $^
$(TARGET): $(OBJS)
- $(LD) -o usrbin.bin $(OBJS)
+ $(LD) -o usrbin.bin $(OBJS) $(LIB)
objcopy -I binary -O elf32-i386 -B i386 usrbin.bin $(TARGET) \
--redefine-sym _binary_usrbin_bin_start=_usrbin_start \
--redefine-sym _binary_usrbin_bin_end=_usrbin_end \