mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Use a path argument for find as required by POSIX.
This commit is contained in:
parent
4f018846fb
commit
c28be21260
2
Makefile
2
Makefile
@ -43,7 +43,7 @@ crystal: pokecrystal.gbc
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(roms) $(all_obj)
|
rm -f $(roms) $(all_obj)
|
||||||
find -iname '*.tx' -exec rm {} +
|
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