aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9a68be0..d5faa1e 100644
--- a/Makefile
+++ b/Makefile
@@ -35,6 +35,9 @@ VERSION="v0.99alpha-$(shell date +%Y%m%d)-$(shell git rev-parse --short HEAD 2>/
# turned into title.xex and prepended to the main .xex. When
# it loads, it goes straight to screen memory.
+# TITLE.DAT, LORCHA.DAT, and PORTSTAT.DAT aren't deleted by a
+# 'make clean'.
+
# romfont is the 1K font extracted from the Atari 800 OS, with a
# command like:
# dd if=atariosb.rom of=1 bs=256 skip=8 count=4
@@ -76,10 +79,10 @@ test: all
$(CC) $(CFLAGS) -c -o $@ $<
clean:
- rm -f *.o *.lst convfont
+ rm -f *.o *.lst convfont *.xex
distclean: clean
- rm -f *~ core *.xex .*.swp 1.* 2.* 1 2 map map.* *.map
+ rm -f *~ core .*.swp 1.* 2.* 1 2 3 map map.* *.map a b c foo bar baz
%.xex: %.c
$(CC) --mapfile map $(CFLAGS) -o $@ $<