From 582c2f65e391fba6a9d3b3ffdef868d9c92a3ea8 Mon Sep 17 00:00:00 2001 From: Sven Michael Klose Date: Sat, 25 Dec 2021 20:07:34 +0100 Subject: [PATCH] Use suffix '.lbl' instead of '.lst'. --- targettest/Makefile | 26 +++++++++++++------------- targettest/cbm/Makefile | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/targettest/Makefile b/targettest/Makefile index 221464108..9c9e07ee5 100644 --- a/targettest/Makefile +++ b/targettest/Makefile @@ -124,40 +124,40 @@ DISK_atarixl = testcode.atr LDFLAGS= ifeq ($(SYS),c64) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),c128) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),c16) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),cbm510) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),cbm510) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),cx16) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),geos-cbm) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),lunix) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),pet) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),pet-overlay) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),plus4) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif ifeq ($(SYS),vic20) - LDFLAGS+=-Ln $@.lst + LDFLAGS+=-Ln $@.lbl endif .o: @@ -428,7 +428,7 @@ testcode.atr: testcode # Clean-up rules mostlyclean: - @$(DEL) *.lbl *.map *.lst *.o 2>$(NULLDEV) + @$(DEL) *.lbl *.map *.lbl *.o 2>$(NULLDEV) # we cant use .s since we have asm files in the directory that we want to keep @$(DEL) ${patsubst %.c,%.s,$(wildcard *.c)} 2>$(NULLDEV) diff --git a/targettest/cbm/Makefile b/targettest/cbm/Makefile index 3c0678c32..cbff73273 100644 --- a/targettest/cbm/Makefile +++ b/targettest/cbm/Makefile @@ -47,4 +47,4 @@ else endif clean: - @$(DEL) *.lst petscii.prg cbmdir-test.prg 2>$(NULLDEV) + @$(DEL) *.lbl petscii.prg cbmdir-test.prg 2>$(NULLDEV)