mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Fix make clean
no more .tx files remove rgbds generated files, .map and .sym
This commit is contained in:
parent
35644c330e
commit
370ffcfd8d
5
Makefile
5
Makefile
@ -1,7 +1,7 @@
|
|||||||
PYTHON := python
|
PYTHON := python
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .asm .tx .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap
|
.SUFFIXES: .asm .o .gbc .png .2bpp .1bpp .lz .pal .bin .blk .tilemap
|
||||||
.PHONY: all clean crystal pngs
|
.PHONY: all clean crystal pngs
|
||||||
.SECONDEXPANSION:
|
.SECONDEXPANSION:
|
||||||
|
|
||||||
@ -54,8 +54,7 @@ all: $(roms)
|
|||||||
crystal: pokecrystal.gbc
|
crystal: pokecrystal.gbc
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(roms) $(all_obj)
|
rm -f $(roms) $(all_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
|
||||||
find . -iname '*.tx' -exec rm {} +
|
|
||||||
|
|
||||||
baserom.gbc: ;
|
baserom.gbc: ;
|
||||||
@echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
|
@echo "Wait! Need baserom.gbc first. Check README and INSTALL for details." && false
|
||||||
|
Loading…
Reference in New Issue
Block a user