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