From 37ceff93572bba6defd916884999c496108220ee Mon Sep 17 00:00:00 2001 From: Michal Idziorek Date: Mon, 20 Oct 2014 20:51:01 +0200 Subject: started porting simple brainfuck interpreter --- userspace/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'userspace/Makefile') diff --git a/userspace/Makefile b/userspace/Makefile index 2a286da..bd1e6ec 100644 --- a/userspace/Makefile +++ b/userspace/Makefile @@ -8,7 +8,7 @@ LDFLAGS=-L/home/miguel/temp/fool-os-stuff/newlib-build-clean/i686-elf/newlib/ \ -L/home/miguel/temp/fool-os-stuff/newlib-build-clean/i686-elf/libgloss/libnosys/ \ -lnosys -all: test.o crt0.o - ${CC} -T linker.ld ${LDFLAGS} test.o -Wl,--oformat,binary -o userprog +all: brainfuck.o crt0.o + ${CC} -T linker.ld ${LDFLAGS} brainfuck.o -Wl,--oformat,binary -o userprog clean: -rm *.o *.out userprog -- cgit v1.2.3