diff options
author | camthesaxman <cameronghall@cox.net> | 2018-01-10 23:57:23 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2018-01-10 23:57:23 -0600 |
commit | 5f9e2256801d56094c7b0e4b096797268f415b03 (patch) | |
tree | 20240e5e05b874c16023005b81a6059201dbff6d | |
parent | 31949ea73cf2820cc180aded7b6543b618999025 (diff) |
use .SECONDARY to prevent intermediate files from being deleted
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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))) |