aboutsummaryrefslogtreecommitdiff
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 b73bf20..6a1accd 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,8 @@ TARGETS := pk
all: $(TARGETS)
-pk: boot.o entry.o pk.o syscall.o file.o frontend.o pk.ld
- $(CC) -o pk entry.o pk.o syscall.o file.o frontend.o -T pk.ld
+pk: boot.o entry.o pk.o syscall.o file.o frontend.o handlers.o pk.ld
+ $(CC) -o pk entry.o pk.o syscall.o file.o frontend.o handlers.o -T pk.ld
%.o: %.c *.h
$(CC) -c $<