summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-06-18 21:54:40 -0400
committeryenatch <yenatch@gmail.com>2013-06-18 22:39:13 -0400
commitf3340de6dc30fb1c889421bdb8a3d22c1b64fa24 (patch)
treecec2afcf98f5936909db8f1de13fae990dc0a4c1 /Makefile
parent4577af01deccd9d66d9e236c24ed7cb9e6e3430a (diff)
make clean is no longer required to compile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 15fa7f5c1..eb75fad6a 100644
--- a/Makefile
+++ b/Makefile
@@ -22,6 +22,10 @@ clean:
pokecrystal.o: pokecrystal.asm constants.asm wram.asm ${TEXTFILES} lzs
rgbasm -o pokecrystal.o pokecrystal.asm
+pokecrystal.asm: depend
+depend:
+ @touch main.asm
+
.asm.tx:
python preprocessor.py < $< > $@