mirror of
https://github.com/StewBC/cc65-Chess.git
synced 2025-03-13 17:33:38 +00:00
17 lines
217 B
Makefile
17 lines
217 B
Makefile
|
CXPRG = cc65-Chess-cx16.prg
|
||
|
|
||
|
# Unix or Windows
|
||
|
ifeq ($(shell echo),)
|
||
|
CP = cp $1
|
||
|
else
|
||
|
CP = copy $(subst /,\,$1)
|
||
|
endif
|
||
|
|
||
|
REMOVES += $(CXPRG)
|
||
|
|
||
|
.PHONY: cxprg
|
||
|
cxprg: $(CXPRG)
|
||
|
|
||
|
$(CXPRG): cc65-chess.cx16
|
||
|
$(call CP, $< $@)
|