From e88b4f9040b63d70563bee8553596f3c317022a5 Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Sat, 17 Nov 2018 14:49:42 -0500 Subject: fixed pdclib for arm, can make programs for stmos --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0d4d85c..d497420 100644 --- a/Makefile +++ b/Makefile @@ -42,9 +42,11 @@ all: @$(MAKE) -C src/user @echo " INITRD" @tools/rba initrd.img $$(find initrd/*) - @$(CROSS)$(OBJCOPY) -B arm -I binary -O elf32-littlearm initrd.img initrd.img.o + @$(CROSS)$(OBJCOPY) -B arm -I binary -O elf32-littlearm initrd.img \ + initrd.img.o @echo " LINK " $(OUT) - @$(CROSS)$(CC) $(CFLAGS) $(LFLAGS) -o $(OUT) $$(find src/ -name "*.o") initrd.img.o + @$(CROSS)$(CC) $(CFLAGS) $(LFLAGS) -o $(OUT) \ + $$(find src/fs src/kernel src/user -name "*.o") initrd.img.o clean: -- cgit v1.2.3