Rev 1004 | Rev 1354 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download
ifeq ($(OS),Windows_NT)SOURCES=$(shell cmdfind.bat asm) $(shell cmdfind.bat gph)SJASMPLUS="../../tools/sjasmplus.exe"elseSOURCES=$(shell find . -type f -iname "*.asm") $(shell find . -type f -iname "*.gph")SJASMPLUS="sjasmplus"endifBINARY=moon.bin moon.comLST=main.lstall:@echo "For making MB03 version call: 'make mb03'"@echo "For making ZXUno(esxDOS) version call: 'make zxuno'"@echo "For making ZXUno(esxDOS, usual screen) version call: 'make zxuno-zxscreen'"@echo "For making NedoOS version call: 'make nedoos'"@echo ""@echo "Before changing version call: 'make clean' for removing builded images"mb03: $(SOURCES)$(SJASMPLUS) main.asm -DPROXY -DMB03 -DTIMEX -DGS --lst=main.lstzxuno: $(SOURCES)$(SJASMPLUS) main.asm -DUNO -DTIMEX --lst=main.lstzxuno-zxscreen: $(SOURCES)sjasmplus main.asm -DUNO -DZXSCR --lst=main.lstesxdos-ay: $(SOURCES)sjasmplus main.asm -DAY -DZXSCR --lst=main.lstnedoos: $(SOURCES)$(SJASMPLUS) main.asm -DNEDOOS -DGS --lst=main.lstclean:rm $(BINARY) $(LST)