1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Do not compile petscii test for unsupported platforms.

Only C64 is supported.
This commit is contained in:
Sven Michael Klose 2021-12-25 09:19:37 +01:00
parent 6ac4aa4e20
commit ba93ab07bc

View File

@ -32,8 +32,12 @@ endif
all: petscii.prg cbmdir-test.prg
ifeq ($(SYS),c64)
petscii.prg: petscii.c
$(CL) -t $(SYS) -O -o petscii.prg petscii.c
else
petscii.prg:
endif
cbmdir-test.prg: cbmdir-test.c
$(CL) -t $(SYS) -Oris -o $@ $<