From a822afc278e7855dea55bcd0de2e402d5bf43508 Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Thu, 20 Nov 2014 23:28:17 +0100 Subject: fixed loading and runnnng progs (clear bss) --- userspace/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'userspace/Makefile') diff --git a/userspace/Makefile b/userspace/Makefile index 564ffe0..18b5ded 100644 --- a/userspace/Makefile +++ b/userspace/Makefile @@ -26,16 +26,16 @@ ext2.img: shell simple brainfuck add rm mnt -rf brainfuck: brainfuck.o crt0.o - ${CC} -T linker.ld ${LDFLAGS} $< -Wl,--oformat,binary -o brainfuck + ${CC} -T linker.ld ${LDFLAGS} $< -o $@ shell: foolshell.o crt0.o - ${CC} -T linker.ld ${LDFLAGS} $< -Wl,--oformat,binary -o shell + ${CC} -T linker.ld ${LDFLAGS} $< -o $@ simple: simple.o crt0.o - ${CC} -T linker.ld ${LDFLAGS} $< -Wl,--oformat,binary -o simple + ${CC} -T linker.ld ${LDFLAGS} $< -o $@ add: add.o crt0.o - ${CC} -T linker.ld ${LDFLAGS} $< -Wl,--oformat,binary -o add + ${CC} -T linker.ld ${LDFLAGS} $< -o $@ clean: -rm *.o *.out shell simple ext2.img brainfuck add -- cgit v1.2.3