mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 22:43:15 -06:00
16 lines
315 B
Makefile
16 lines
315 B
Makefile
OBJECTS = VGMPLAY.COM
|
|
DEST = ../../../Binary/Apps
|
|
TOOLS = ../../../Tools
|
|
OTHERS = *.LST
|
|
|
|
include $(TOOLS)/Makefile.inc
|
|
|
|
DEPS := VGMPLAY.ASM $(shell find . -name '*.inc')
|
|
|
|
VGMPLAY.COM: $(DEPS)
|
|
$(TASM) -dWBW VGMPLAY.ASM VGMPLAY.COM VGMPLAY.LST
|
|
|
|
all::
|
|
mkdir -p $(DEST)/Tunes
|
|
cp Tunes/* $(DEST)/Tunes
|