9 lines
250 B
Makefile
9 lines
250 B
Makefile
SUPPORT_PROJECTS = cdtypes tool_helper
|
|
PROJECTS = cpp_out psxfileconv mkoverlay psxcdgen_ex psxreadmap wslpath
|
|
.PHONY: $(PROJECTS)
|
|
|
|
$(foreach var,$(PROJECTS),$(var)):
|
|
$(MAKE) -C ./$@ $(MAKECMDGOALS)
|
|
|
|
all-windows: $(PROJECTS)
|
|
all: $(PROJECTS) |