]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
* Makefile.in (clean-here): The clean target should not delete the
authorNiels Möller <nisse@lysator.liu.se>
Thu, 18 Nov 2004 22:32:24 +0000 (23:32 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 18 Nov 2004 22:32:24 +0000 (23:32 +0100)
dependency files. Moved to the distclean target.
* examples/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.
* tools/Makefile.in: Likewise.

Rev: src/nettle/ChangeLog:1.305
Rev: src/nettle/Makefile.in:1.13
Rev: src/nettle/examples/Makefile.in:1.8
Rev: src/nettle/testsuite/Makefile.in:1.8
Rev: src/nettle/tools/Makefile.in:1.9

ChangeLog
Makefile.in
examples/Makefile.in
testsuite/Makefile.in
tools/Makefile.in

index 77be576455401475d28fa129c1656d67fff30486..9f67fcb4f7f24fbb1714aef7a56f3491f0cdce0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2004-11-18  Niels Möller  <nisse@lysator.liu.se>
 
+       * Makefile.in (clean-here): The clean target should not delete the
+       dependency files. Moved to the distclean target.
+       * examples/Makefile.in: Likewise.
+       * testsuite/Makefile.in: Likewise.
+       * tools/Makefile.in: Likewise.
+       
        * configure.ac (ASM_SYMBOL_PREFIX): Fixed test.
        (dummy-dep-files): Added quotes to sed command.
 
index 2249158d16624eead3a6fa5f1922af8cfc13c021..601b7ba7cf30ee10957c5f4b9a0dbb78845c8eb7 100644 (file)
@@ -320,11 +320,11 @@ distcheck: dist
        $(rm_distcheck)
 
 clean-here:
-       -rm -f $(TARGETS) *.$(OBJEXT) *.p$(OBJEXT) *.d *.s
+       -rm -f $(TARGETS) *.$(OBJEXT) *.p$(OBJEXT) *.s
 
 distclean-here: clean-here
        -rm -f config.h stamp-h config.log config.status \
-       config.make config.m4 Makefile nettle-types.h
+       config.make config.m4 Makefile nettle-types.h *.d
 
 DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d)
 include $(DEP_FILES)
index 79315d67e8b8c382093c34302e2e1fd0c4b6a37d..0fae6c6dc425ebc1dece90db4abeafb119979255 100644 (file)
@@ -48,9 +48,9 @@ distdir: $(DISTFILES)
        cp $^ $(distdir)
 
 clean:
-       -rm -f $(TARGETS) *.o *.d
+       -rm -f $(TARGETS) *.o
 
 distclean: clean
-       -rm -f Makefile
+       -rm -f Makefile *.d
 
 include $(SOURCES:.c=.$(OBJEXT).d)
index 53afe8ca495b9f7823674c5e3b01d640da8c0599..5dc20d622df0d428ee0726a227c8a551b5db0efe 100644 (file)
@@ -61,9 +61,9 @@ distdir: $(DISTFILES)
        cp $^ $(distdir)
 
 clean:
-       -rm -f $(TARGETS) *.o *.d test.in test1.out test2.out
+       -rm -f $(TARGETS) *.o test.in test1.out test2.out
 
 distclean: clean
-       -rm -f Makefile
+       -rm -f Makefile *.d
 
 include $(SOURCES:.c=.$(OBJEXT).d)
index 8c2de7f806096c622f4ecbd85bcd88ed5db5ee43..de25ba83082cd3bc93371a0d3eb27aae70ae0744 100644 (file)
@@ -50,9 +50,9 @@ distdir: $(DISTFILES)
        cp $^ $(distdir)
 
 clean:
-       -rm -f $(TARGETS) *.o *.d
+       -rm -f $(TARGETS) *.o
 
 distclean: clean
-       -rm -f Makefile
+       -rm -f Makefile *.d
 
 include $(SOURCES:.c=.$(OBJEXT).d)