mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Makefile: empty targets for %.asm and baserom.gbc
so make stops wasting time trying to find implicit rules
This commit is contained in:
parent
cc95304912
commit
cf3fd4e13b
4
Makefile
4
Makefile
@ -35,7 +35,7 @@ clean:
|
||||
@echo 'Removing preprocessed .tx files...'
|
||||
@rm -f $(TEXTFILES:.asm=.tx)
|
||||
|
||||
baserom.gbc:
|
||||
baserom.gbc: ;
|
||||
@echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
|
||||
|
||||
PNGS := $(shell find gfx/ -type f -name '*.png')
|
||||
@ -55,6 +55,8 @@ $(shell \
|
||||
$(eval TEXTQUEUE := $(TEXTQUEUE) $<)
|
||||
@rm -f $@
|
||||
|
||||
%.asm: ;
|
||||
|
||||
globals.asm: $(TEXTFILES:.asm=.tx)
|
||||
@echo "Creating globals.asm..."
|
||||
@touch globals.asm
|
||||
|
Loading…
Reference in New Issue
Block a user