summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-07-24 04:43:28 +0200
committerLouis Burda <quent.burda@gmail.com>2023-07-24 04:43:28 +0200
commit5835917f57d4dc04b406c8e3e06bf3b046d709e3 (patch)
tree49aa1aa85220801fe2e7f63e5a1bfbb9af9b65e2 /Makefile
parentd7865d956f9fe3a08ebe4429dce4428a9f74bc6c (diff)
downloadtis100-5835917f57d4dc04b406c8e3e06bf3b046d709e3.tar.gz
tis100-5835917f57d4dc04b406c8e3e06bf3b046d709e3.zip
Add some more implementation details
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b56cf29..62c5c54 100644
--- a/Makefile
+++ b/Makefile
@@ -8,10 +8,10 @@ all: tis-as tis-curses
clean:
rm -f tis-as tis-curses
-tis-as: tis-as.c tpu.c
+tis-as: tis-as.c tpu.c util.c
$(CC) -o $@ $^ $(CFLAGS)
-tis-curses: tis-curses.c tpu.c
+tis-curses: tis-curses.c tpu.c util.c
$(CC) -o $@ $^ $(CFLAGS) -lncursesw
install: