Rev 857 | Rev 923 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download
# Supported environments:# GNU/Linux# Windows NTinclude ../src/_sdk/common.mk.PHONY: all clean-aspp clean-dmimg clean-mhmt clean-sjasmplus cleanifeq ($(OS),Windows_NT)all:@echo Nothing to do on Windows.elseall: aspp dmimg mhmt sjasmplusendifaspp: src/aspp/build/release/linux/aspp | src/aspp$(CP) $< $@src/aspp/build/release/linux/aspp: | src/aspp$(MAKE) -w -C $| allclean-aspp: | src/aspp$(MAKE) -w -C $| clean$(RM) asppdmimg: src/dmimg/dmimg | src/dmimg$(CP) $< $@src/dmimg/dmimg: | src/dmimg$(MAKE) -w -C $|clean-dmimg: | src/dmimg$(MAKE) -w -C $| clean$(RM) dmimgmhmt: src/mhmt/linux/mhmt | src/mhmt/linux$(CP) $< $@src/mhmt/linux/mhmt: | src/mhmt/linux$(MAKE) -w -C $|clean-mhmt: | src/mhmt/linux$(MAKE) -w -C $| clean$(RM) mhmtsjasmplus: src/sjasmplus/sjasmplus$(CP) $< $@src/sjasmplus/sjasmplus: | src/sjasmplus$(MAKE) -w -C $|clean-sjasmplus: | src/sjasmplus$(MAKE) -w -C $| clean$(RM) sjasmplusclean: clean-aspp clean-dmimg clean-mhmt clean-sjasmplus