summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 69beadf..05f6c5f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
PROGNAME=$(shell pwd | xargs basename)
-$(PROGNAME): main.o
- ld -o $@ $<
+$(PROGNAME): main.o printf.o string.o
+ ld -o $@ $^
%.o: %.s syscall.s
as -o $@ $<