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

View file

@ -36,18 +36,12 @@ MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
### Targets: ###
all: sub_emulator sub_execmon sub_helpview sub_hhp2cached sub_ifacecheck sub_screenshotgen sub_wxrc
all: sub_helpview sub_hhp2cached sub_ifacecheck sub_screenshotgen sub_wxrc
clean:
-if exist .\*.obj del .\*.obj
-if exist .\*.res del .\*.res
-if exist .\*.pch del .\*.pch
cd emulator\src
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
cd execmon
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
cd helpview\src
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
@ -64,16 +58,6 @@ clean:
$(MAKE) -f makefile.vc $(MAKEARGS) clean
cd "$(MAKEDIR)"
sub_emulator:
cd emulator\src
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"
sub_execmon:
cd execmon
$(MAKE) -f makefile.vc $(MAKEARGS) all
cd "$(MAKEDIR)"
sub_helpview:
cd helpview\src
$(MAKE) -f makefile.vc $(MAKEARGS) all