Files
RomWBW/Source/Apps/VGM/Makefile
Wayne Warthen ed981de47a Update Makefile
- Minor correction to remove .LST file in clean.
2021-11-23 13:26:01 -08:00

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