Regenerate utils makefiles

emulator and execmon were removed, so utils makefiles
must be regenerated from the updated bakefile.
This commit is contained in:
PB
2022-11-20 10:46:26 +01:00
parent 8030d3124a
commit af97f4a735
3 changed files with 8 additions and 53 deletions
+2 -11
View File
@@ -36,25 +36,17 @@ MAKEARGS = LINK_DLL_FLAGS="$(LINK_DLL_FLAGS)" \
### Targets: ###
all: emulator execmon helpview hhp2cached ifacecheck screenshotgen wxrc
all: helpview hhp2cached ifacecheck screenshotgen wxrc
clean:
-if exist .\*.o del .\*.o
-if exist .\*.d del .\*.d
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C execmon -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C hhp2cached -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C ifacecheck\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C screenshotgen\src -f makefile.gcc $(MAKEARGS) clean
$(MAKE) -C wxrc -f makefile.gcc $(MAKEARGS) clean
emulator:
$(MAKE) -C emulator\src -f makefile.gcc $(MAKEARGS) all
execmon:
$(MAKE) -C execmon -f makefile.gcc $(MAKEARGS) all
helpview:
$(MAKE) -C helpview\src -f makefile.gcc $(MAKEARGS) all
@@ -70,8 +62,7 @@ screenshotgen:
wxrc:
$(MAKE) -C wxrc -f makefile.gcc $(MAKEARGS) all
.PHONY: all clean emulator execmon helpview hhp2cached ifacecheck screenshotgen \
wxrc
.PHONY: all clean helpview hhp2cached ifacecheck screenshotgen wxrc
SHELL := $(COMSPEC)