mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Fix parallelisation issues in Makefile
Introduces a minor hack, in order to ensure that the tools are built before the Makefile attempts to use any of the tools, even when using ‘make -j’.
This commit is contained in:
parent
848b3ba3ec
commit
fc300ab0ee
11
Makefile
11
Makefile
@ -29,8 +29,15 @@ crystal11_obj := $(crystal_obj:.o=11.o)
|
|||||||
roms := pokecrystal.gbc pokecrystal11.gbc
|
roms := pokecrystal.gbc pokecrystal11.gbc
|
||||||
|
|
||||||
all: crystal
|
all: crystal
|
||||||
crystal: tools pokecrystal.gbc
|
crystal: pokecrystal.gbc
|
||||||
crystal11: tools pokecrystal11.gbc
|
crystal11: pokecrystal11.gbc
|
||||||
|
|
||||||
|
# Ensure that the tools are built when making the ROM
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(MAKECMDGOALS),tools)
|
||||||
|
Makefile: tools
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
|
rm -f $(roms) $(crystal_obj) $(crystal11_obj) $(roms:.gbc=.map) $(roms:.gbc=.sym)
|
||||||
|
Loading…
Reference in New Issue
Block a user