]> The Tcpdump Group git mirrors - tcpdump/commit
Makefile.in: don't remove configure and config.h.in in make distclean.
authorGuy Harris <[email protected]>
Sun, 5 Feb 2023 21:23:57 +0000 (13:23 -0800)
committerfxlb <[email protected]>
Mon, 29 Jan 2024 09:09:27 +0000 (09:09 +0000)
commit03c3fad2fa131ce550c9bbe91e4ffdcac71eab35
tree9e9598cd6bf56ab2d2100960fec98c8c9117c4b1
parent243be465d6c1b031baf15124d51437c58dcfa5aa
Makefile.in: don't remove configure and config.h.in in make distclean.

In the GNU makefile standards, "make distclean" removes everything
that's not part of the source distribution; this does *not* include the
configure script or the config.h.in file, as those are in the release
tarball, so that building from a source tarball doesn't require having
autoconf.  This allows somebody building from the source tarball to do a
"make distclean" and then reconfigure.

Do, however, remove any release tarball in make distclean, by having
distclean depend on clean.

(cherry picked from commit 75d18375e7351d8295181d2bf1e2dce57b1498b2)
Makefile.in