summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2018-01-10 23:57:23 -0600
committercamthesaxman <cameronghall@cox.net>2018-01-10 23:57:23 -0600
commit5f9e2256801d56094c7b0e4b096797268f415b03 (patch)
tree20240e5e05b874c16023005b81a6059201dbff6d
parent31949ea73cf2820cc180aded7b6543b618999025 (diff)
use .SECONDARY to prevent intermediate files from being deleted
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1fb17dc02..cb4aeb46c 100644
--- a/Makefile
+++ b/Makefile
@@ -78,12 +78,10 @@ endif
# Secondary expansion is required for dependency variables in object rules.
.SECONDEXPANSION:
-
# Clear the default suffixes
.SUFFIXES:
-
# Don't delete intermediate files
-.PRECIOUS: %.1bpp %.4bpp %.8bpp %.gbapal %.lz %.rl %.pcm %.bin sound/direct_sound_samples/cry_%.bin
+.SECONDARY:
# Create build subdirectories
$(shell mkdir -p $(addprefix $(BUILD_DIR)/, $(SUBDIRS)))