summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-07-25 00:47:01 +0200
committerLouis Burda <quent.burda@gmail.com>2023-07-25 00:47:01 +0200
commit40d8eb449ed072b47bfbe953a191708f761c53a0 (patch)
tree63ed15404eb3acd99a9ca0f77654b2c97efe54d9 /Makefile
parent29894d56e144223629e558070cbc52080e21342e (diff)
downloadtis100-40d8eb449ed072b47bfbe953a191708f761c53a0.tar.gz
tis100-40d8eb449ed072b47bfbe953a191708f761c53a0.zip
Reimplement value passing and improve curses ui
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d950c5d..109c630 100644
--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,10 @@ all: tis-as tis-curses
clean:
rm -f tis-as tis-curses
-tis-as: tis-as.c tpu.c util.c
+tis-as: tis-as.c tpu.c util.c asm.c
$(CC) -o $@ $^ $(CFLAGS)
-tis-curses: tis-curses.c tpu.c util.c
+tis-curses: tis-curses.c tpu.c util.c asm.c
$(CC) -o $@ $^ $(CFLAGS) -lncursesw
install: