mirror of
https://github.com/StewBC/cc65-Chess.git
synced 2025-02-06 14:30:21 +00:00
Made the old C64 version C64.chr and created a new graphical interface version for the C64 and the Commander X16. Also changed the Oric to be called the atmos since that works better with the build system.
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, $< $@)
|