Skip to content
Snippets Groups Projects
Commit 2e032088 authored by Niels Möller's avatar Niels Möller
Browse files

* 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.

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
parent 53fcd2a2
No related branches found
No related tags found
No related merge requests found
2004-11-18 Niels Mller <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.
......
......@@ -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)
......@@ -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)
......@@ -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)
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment