From 03e0c58b2363e5daecc29da44edf27fe4bc4beaa Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 15 Aug 2019 21:58:46 -0700 Subject: [PATCH] Add targets to .PHONY to re-allow partial rebuild. Somehow when doing 2559eb24b6314939dde07d7bed5927cb37929dda, I neglected to put $(COMMON_DEFINES) $(CURSES_DEFINES) $(COMMON_STRINGS) $(HASH) into .PHONY. This had the effect of requiring me to do "make clean ; make" after altering one file. Otherwise the build would simply report that blorblib.a is up to date and exit. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index befc165..255aed2 100644 --- a/Makefile +++ b/Makefile @@ -464,6 +464,7 @@ help: .PHONY: all clean dist curses ncurses dumb sdl hash help \ common_defines curses_defines nosound nosound_helper\ + $(COMMON_DEFINES) $(CURSES_DEFINES) $(COMMON_STRINGS) $(HASH) \ blorb_lib common_lib curses_lib dumb_lib \ install install_dfrotz install_sfrotz \ $(SUBDIRS) $(SUB_CLEAN) \ -- 2.34.1