diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 18:49:08 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 18:50:38 -0500 |
commit | 4d6b8249698a8cd1ba42ee3517de08252c8062f2 (patch) | |
tree | 6466c975529e3beb5bce89adf2edfc263f43edd1 | |
parent | 66e0602dc44c71b7a437114080e84910f75431a4 (diff) |
compile with preprocessor outputs
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,10 +5,10 @@ TEXTFILES = text/oakspeech.tx text/pokedex.tx text/mapRedsHouse1F.tx \ all: pokered.gbc -pokered.o: pokered.asm main.tx constants.asm ${TEXTFILES} - rgbasm -o pokered.o pokered.asm +pokered.o: pokered.tx main.tx constants.tx music.tx wram.tx ${TEXTFILES} + rgbasm -o pokered.o pokered.tx -pokeblue.o: pokeblue.asm main.tx constants.asm ${TEXTFILES} +pokeblue.o: pokeblue.asm main.tx constants.tx ${TEXTFILES} rgbasm -o pokeblue.o pokeblue.asm redrle: extras/redrle.c |