From 454cdc40debc0cde07e2e16a379e5e3f4458cc1c Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Mon, 10 Feb 1997 22:04:40 +0000 Subject: [PATCH] * libobj.in: Remove instances of STAMP.*, since they aren't actually necessary. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9838 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/ChangeLog | 5 +++++ src/config/libobj.in | 26 +++++++------------------- 2 files changed, 12 insertions(+), 19 deletions(-) diff --git a/src/config/ChangeLog b/src/config/ChangeLog index 6998c29c4..8f62c8435 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,3 +1,8 @@ +Mon Feb 10 08:39:10 1997 Tom Yu + + * libobj.in: Remove instances of STAMP.*, since they aren't + actually necessary. + Sun Feb 9 13:43:42 1997 Tom Yu * libobj.in (OBJS.*): Work around a gmake optimization where the diff --git a/src/config/libobj.in b/src/config/libobj.in index c325cd3a5..e53045d10 100644 --- a/src/config/libobj.in +++ b/src/config/libobj.in @@ -36,32 +36,20 @@ PROFFLAGS=@PROFFLAGS@ $(CC) $(PROFFLAGS) $(CFLAGS) -c $< -o $*.po # rules to generate object file lists -# -# 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.ST: $(STLIBOBJS) + @echo $(STLIBOBJS) > $@ + +OBJS.SH: $(SHLIBOBJS) + @echo $(SHLIBOBJS) > $@ -OBJS.PF: STAMP.PF - touch $@ -STAMP.PF: $(PFLIBOBJS) - @echo $(PFLIBOBJS) > OBJS.PF - touch $@ +OBJS.PF: $(PFLIBOBJS) + @echo $(PFLIBOBJS) > $@ all-libobjs: $(OBJLISTS) clean-libobjs: $(RM) OBJS.ST OBJS.SH OBJS.PF - $(RM) STAMP.ST STAMP.SH STAMP.PF $(RM) $(STLIBOBJS) $(RM) $(SHLIBOBJS) $(RM) $(PFLIBOBJS) -- 2.26.2