]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Add make distclean that removes everything configure produced,
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 22 Nov 2019 14:10:02 +0000 (15:10 +0100)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Fri, 22 Nov 2019 14:10:02 +0000 (15:10 +0100)
  and make maintainer-clean that removes bison and flex output.

Makefile.in
doc/Changelog

index 4c37e590675633a2294af8694731c0e454ebc9dc..8452b1f5c662f98c05fe48da568159bba6456742 100644 (file)
@@ -456,14 +456,19 @@ clean:
        rm -f _unbound.la libunbound/python/libunbound_wrap.c libunbound/python/unbound.py pythonmod/interface.h pythonmod/unboundmodule.py
        rm -rf autom4te.cache .libs build doc/html doc/xml
 
-realclean: clean
-       rm -f config.status config.log config.h.in config.h
-       rm -f configure config.sub config.guess ltmain.sh aclocal.m4 libtool
-       rm -f util/configlexer.c util/configparser.c util/configparser.h
-       rm -f doc/example.conf doc/libunbound.3 doc/unbound-anchor.8 doc/unbound-checkconf.8 doc/unbound-control.8 doc/unbound.8 doc/unbound.conf.5
+distclean: clean
+       rm -f config.status config.log config.h
+       rm -f doc/example.conf doc/libunbound.3 doc/unbound-anchor.8 doc/unbound-checkconf.8 doc/unbound-control.8 doc/unbound.8 doc/unbound.conf.5 doc/unbound-host.1
+       rm -f smallapp/unbound-control-setup.sh dnstap/dnstap_config.h dnscrypt/dnscrypt_config.h contrib/libunbound.pc contrib/unbound.socket contrib/unbound.service
        rm -f $(TEST_BIN)
        rm -f Makefile 
 
+maintainer-clean: distclean
+       rm -f util/configlexer.c util/configparser.c util/configparser.h
+
+realclean: maintainer-clean
+       rm -f configure config.h.in config.sub config.guess ltmain.sh aclocal.m4 libtool
+
 .SUFFIXES: .lint
 .c.lint:
        $(LINT) $(LINTFLAGS) -I. -I$(srcdir) $<
index 17f5f956928b5c421fe10c79d1c8e173ec5f81f4..1bd10738f8c5963365505bbd0d7d524ead3acc1d 100644 (file)
@@ -3,6 +3,8 @@
 
 22 November 2019: Wouter
        - Fix dname loop maximum, reported by Eric Sesterhenn from X41 D-Sec.
+       - Add make distclean that removes everything configure produced,
+         and make maintainer-clean that removes bison and flex output.
 
 20 November 2019: Wouter
        - Fix Out of Bounds Read in rrinternal_get_owner(),