[master] make uninstall

4503.	[cleanup]	"make uninstall" now removes file installed by
			BIND. (This currently excludes Python files
			due to lack of support in setup.py.) [RT #42912]
This commit is contained in:
Evan Hunt
2016-11-01 19:17:07 -07:00
parent 05caf20a11
commit 6087f87afb
47 changed files with 331 additions and 1 deletions

View File

@@ -26,3 +26,8 @@ install:: installdirs
for i in ${HEADERS}; do \
${INSTALL_DATA} $(srcdir)/$$i ${DESTDIR}${includedir}/isc ; \
done
uninstall::
for i in ${HEADERS}; do \
rm -f ${DESTDIR}${includedir}/isc/$$i ; \
done