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
1 changed files with 4 additions and 0 deletions

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 $@ $<