summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-07-26 17:59:43 +0200
committerLouis Burda <quent.burda@gmail.com>2023-07-26 17:59:43 +0200
commited666b4fd98ad168f735b814cf74e77ef5c52794 (patch)
tree1a9e0f4920060f193d5add588503253a2635a19a /Makefile
parentce2b644f251d5b22dc2228a0ffc8479408c49c38 (diff)
downloadtis100-ed666b4fd98ad168f735b814cf74e77ef5c52794.tar.gz
tis100-ed666b4fd98ad168f735b814cf74e77ef5c52794.zip
Fork tis256 to create version like game
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 109c630..8589821 100644
--- a/Makefile
+++ b/Makefile
@@ -4,21 +4,21 @@ BINDIR ?= /bin
CFLAGS = -Wunused-function -Wunused-variable -Wconversion -Wswitch
CFLAGS += -Og -g
-all: tis-as tis-curses
+all: tis100 tis100-curses
clean:
- rm -f tis-as tis-curses
+ rm -f tis100 tis100-curses
-tis-as: tis-as.c tpu.c util.c asm.c
+tis100: tis100.c tpu.c util.c asm.c
$(CC) -o $@ $^ $(CFLAGS)
-tis-curses: tis-curses.c tpu.c util.c asm.c
+tis100-curses: tis100-curses.c tpu.c util.c asm.c
$(CC) -o $@ $^ $(CFLAGS) -lncursesw
install:
- install -m755 tis-as tis-curses -t "$(DESTDIR)$(PREFIX)$(BINDIR)"
+ install -m755 tis100 tis100-curses -t "$(DESTDIR)$(PREFIX)$(BINDIR)"
uninstall:
- rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)"/{tis-as,tis-curses}
+ rm -f "$(DESTDIR)$(PREFIX)$(BINDIR)"/{tis100,tis100-curses}
.PHONY: all clean install uninstall