From 98a344a7861b54b6aa6b0cd4b89d4b08f0ebfef0 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Sun, 26 Nov 2023 16:45:56 +0100 Subject: [PATCH] Fix: Remove generated .sfo file on clean This fixes a part of #47. --- Makefile.config | 1 + Makefile.in | 1 + 2 files changed, 2 insertions(+) diff --git a/Makefile.config b/Makefile.config index c01f960..672c08f 100644 --- a/Makefile.config +++ b/Makefile.config @@ -9,6 +9,7 @@ GENERATE_GRF := sound BASE_FILENAME := opensfx SOUND_FILE := $(BASE_FILENAME).cat OBS_FILE := $(BASE_FILENAME).obs +SFO_FILE := $(BASE_FILENAME).sfo SOUND_FILES := $(ls src/wav/*.wav) LANG_FILES := $(ls lang/*.lng) diff --git a/Makefile.in b/Makefile.in index 5d01b8e..a81df4a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -52,3 +52,4 @@ clean:: $(_V) -rm -f $(OBS_FILE) $(_V) -rm -f $(SOUND_FILE) $(_V) -rm -f src/$(SOUND_FILE) + $(_V) -rm -f src/$(SFO_FILE)