# HG changeset patch # User John "Elwin" Edwards # Date 1378242888 25200 # Node ID fbc75509f4cd56ab6586f2a48a3e9d42c60700a3 # Parent 00baf21eb047ba3c9014665a3110f98d2be8db5e Add config.h to the list of headers in the Makefiles. Some .o files need to be rebuilt if config.h changes. Adding it to the list of headers may still fail to solve the problem, because some of the Makefiles use implicit rules or do not list dependencies properly. diff -r 00baf21eb047 -r fbc75509f4cd arogue5/Makefile.in --- a/arogue5/Makefile.in Tue Sep 03 14:02:15 2013 -0700 +++ b/arogue5/Makefile.in Tue Sep 03 14:14:48 2013 -0700 @@ -30,7 +30,7 @@ O=o -HDRS = rogue.h mach_dep.h network.h +HDRS = rogue.h mach_dep.h network.h config.h OBJS1 = chase.$(O) command.$(O) daemon.$(O) daemons.$(O) encumb.$(O) \ fight.$(O) init.$(O) io.$(O) list.$(O) main.$(O) maze.$(O) mdport.$(O)\ misc.$(O) monsters.$(O) move.$(O) new_level.$(O) options.$(O) \ diff -r 00baf21eb047 -r fbc75509f4cd rogue4/Makefile.in --- a/rogue4/Makefile.in Tue Sep 03 14:02:15 2013 -0700 +++ b/rogue4/Makefile.in Tue Sep 03 14:14:48 2013 -0700 @@ -36,7 +36,7 @@ man6dir=$(mandir)/man6 docdir=@docdir@ -HDRS= rogue.h extern.h +HDRS= rogue.h extern.h config.h DOBJS= vers.o extern.o armor.o chase.o command.o daemon.o daemons.o \ fight.o init.o io.o list.o main.o misc.o monsters.o move.o \ new_level.o options.o pack.o passages.o potions.o rings.o rip.o \ diff -r 00baf21eb047 -r fbc75509f4cd rogue5/Makefile.in --- a/rogue5/Makefile.in Tue Sep 03 14:02:15 2013 -0700 +++ b/rogue5/Makefile.in Tue Sep 03 14:14:48 2013 -0700 @@ -103,7 +103,7 @@ # It should not be necessary to change anything below this comment ############################################################################### -HDRS = rogue.h extern.h score.h +HDRS = rogue.h extern.h score.h config.h OBJS1 = vers.$(O) extern.$(O) armor.$(O) chase.$(O) command.$(O) \ daemon.$(O) daemons.$(O) fight.$(O) init.$(O) io.$(O) list.$(O) \ mach_dep.$(O) main.$(O) mdport.$(O) misc.$(O) monsters.$(O) \ diff -r 00baf21eb047 -r fbc75509f4cd srogue/Makefile.in --- a/srogue/Makefile.in Tue Sep 03 14:02:15 2013 -0700 +++ b/srogue/Makefile.in Tue Sep 03 14:14:48 2013 -0700 @@ -27,7 +27,7 @@ bindir=@bindir@ docdir=@docdir@ -HDRS= bob.h cx.h ncx.h rdk.h rogue.h +HDRS= bob.h cx.h ncx.h rdk.h rogue.h config.h OBJS= vers.o armor.o chase.o command.o daemon.o daemons.o disply.o encumb.o \ fight.o global.o init.o io.o list.o main.o mdport.o misc.o monsters.o \ move.o new_leve.o options.o pack.o passages.o potions.o pstats.o \