* libobj.in (OBJS.*): Work around a gmake optimization where the
authorTom Yu <tlyu@mit.edu>
Sun, 9 Feb 1997 18:44:56 +0000 (18:44 +0000)
committerTom Yu <tlyu@mit.edu>
Sun, 9 Feb 1997 18:44:56 +0000 (18:44 +0000)
timestamps of OBJS.* would not get checked after STAMP.* get
updated, even though OBJS.* get updated as a side effect.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9833 dc483132-0cff-0310-8789-dd5450dbe970

src/config/ChangeLog
src/config/libobj.in

index d0548162e4479d12e1629044a18a96fc72b1a207..6998c29c420720a2590de3251da76419317f0755 100644 (file)
@@ -1,3 +1,9 @@
+Sun Feb  9 13:43:42 1997  Tom Yu  <tlyu@mit.edu>
+
+       * libobj.in (OBJS.*): Work around a gmake optimization where the
+       timestamps of OBJS.* would not get checked after STAMP.* get
+       updated, even though OBJS.* get updated as a side effect.
+
 Fri Feb  7 08:44:32 1997  Richard Basch  <basch@lehman.com>
 
        * windows.in: Compile win16 non-DLL objects with /GA to add the
index bbff258f9e121a371e61bc20196fe3736e5246fe..c325cd3a5fac52748f5078c2452d30f5c990a94b 100644 (file)
@@ -40,16 +40,19 @@ PROFFLAGS=@PROFFLAGS@
 # The "STAMP.*" files are there in case the object list happens to be
 # empty.
 OBJS.ST: STAMP.ST
+       touch $@
 STAMP.ST: $(STLIBOBJS)
        @echo $(STLIBOBJS) > OBJS.ST
        touch $@
 
 OBJS.SH: STAMP.SH
+       touch $@
 STAMP.SH: $(SHLIBOBJS)
        @echo $(SHLIBOBJS) > OBJS.SH
        touch $@
 
 OBJS.PF: STAMP.PF
+       touch $@
 STAMP.PF: $(PFLIBOBJS)
        @echo $(PFLIBOBJS) > OBJS.PF
        touch $@