Add targets to .PHONY to re-allow partial rebuild.
authorDavid Griffith <dave@661.org>
Fri, 16 Aug 2019 04:58:46 +0000 (21:58 -0700)
committerDavid Griffith <dave@661.org>
Fri, 16 Aug 2019 04:58:46 +0000 (21:58 -0700)
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

index befc165004f23ab68788664072b6e75a4bf7813c..255aed25bbb706782ba7c78cd2058b0cc8af2da0 100644 (file)
--- 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) \