aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a32c132..0000000
--- a/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-SRC = tictactoe.tal
-
-PROG = $(SRC:.tal=.rom)
-
-CLEANFILES = $(PROG)
-
-UXNASM = uxncli ~/roms/asma.rom
-# UXNASM = uxncli ~/roms/drifblim.rom
-# UXNASM = uxnasm
-
-UXNEMU = uxnemu
-# UXNEMU = uxn11
-
-all: $(PROG)
-
-.tal.rom:
- $(UXNASM) $< $@
-
-$(PROG): $(SRC)
-
-run: $(PROG)
- $(UXNEMU) $<
-
-lint: $(SRC)
- uxncli ~/roms/uxnlin.rom $<
-
-clean:
- rm -f $(CLEANFILES)
-
-.PHONY: all run clean
-.SUFFIXES: .tal .rom