cc65-Chess/Makefile-tap.mk

17 lines
201 B
Makefile
Raw Normal View History

2020-05-16 00:39:46 +00:00
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)
2024-01-11 20:05:38 +00:00
$(TAP): cc65-Chess.atmos
2020-05-16 00:39:46 +00:00
$(call CP, $< $@)