1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-02 04:41:35 +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 committed by mrdudz
parent 815e30c47f
commit b40c76a632

View File

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