From b40c76a6326203d5803e1b2e9574cffa531c3379 Mon Sep 17 00:00:00 2001 From: Sven Michael Klose Date: Sat, 25 Dec 2021 09:19:37 +0100 Subject: [PATCH] Do not compile petscii test for unsupported platforms. Only C64 is supported. --- targettest/cbm/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/targettest/cbm/Makefile b/targettest/cbm/Makefile index 298f80d62..147df2c1c 100644 --- a/targettest/cbm/Makefile +++ b/targettest/cbm/Makefile @@ -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 $@ $<