aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2015-12-31 04:48:10 -0500
committerB. Watson <yalhcru@gmail.com>2015-12-31 04:48:10 -0500
commit358ed61e3bdef37ca0f4a3cd0eb8a248b2f2affe (patch)
tree8180a6548f98bc45ed087ca50b36400d69c67d72 /Makefile
parentbcfb1a5e34043646c690919d4dc6dc31fea1303c (diff)
downloadtaipan-358ed61e3bdef37ca0f4a3cd0eb8a248b2f2affe.tar.gz
fix mchenry() spacing
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 $@ $<