summaryrefslogtreecommitdiff
path: root/userspace/Makefile
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-10-20 20:51:01 +0200
committerMichal Idziorek <m.i@gmx.at>2014-10-20 20:51:01 +0200
commit37ceff93572bba6defd916884999c496108220ee (patch)
tree1b40ae0f5e3c2c3cf1bb60c3f1d9f7ae5dd53c1b /userspace/Makefile
parent813272cd88cc6c0a1dfbb121d2130fc849042c8a (diff)
started porting simple brainfuck interpreter
Diffstat (limited to 'userspace/Makefile')
-rw-r--r--userspace/Makefile4
1 files changed, 2 insertions, 2 deletions
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