mirror of
https://github.com/StewBC/cc65-Chess.git
synced 2025-02-06 14:30:21 +00:00
17 lines
201 B
Makefile
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, $< $@)
|