aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ad14afd..4d59135 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,8 @@ $(BUILD)/%.o: src/%.asm | $(BUILD)
rgbasm $(ASFLAGS) -o $@ $<
# C programs: compiled with SDCC into ROM-bank blobs and INCBIN'd by programs.asm
-CBLOBS := c/chello.bin
+CBLOBS := c/chello.bin c/echo.bin c/true.bin c/false.bin c/uname.bin \
+ c/pid.bin c/cat.bin
$(BUILD)/programs.o: $(CBLOBS)
c/%.bin: c/%.c c/crt0.s c/libc.s c/build.sh