cc65-Chess/Makefile-tap.mk

17 lines
201 B
Makefile

TAP = cc65-Chess.tap
# Unix or Windows
ifeq ($(shell echo),)
CP = cp $1
else
CP = copy $(subst /,\,$1)
endif
REMOVES += $(TAP)
.PHONY: tap
tap: $(TAP)
$(TAP): cc65-Chess.atmos
$(call CP, $< $@)