From 44852fdf6335927b44ac7ebb348efa782a7f08de Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 25 Aug 2011 10:19:23 -0700 Subject: [PATCH] Mark "uninstall-local" targets phony. --- Makefile.am | 4 +++- ovsdb/ovsdbmonitor/automake.mk | 2 +- python/ovs/automake.mk | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index fba63b05..ec674b77 100644 --- a/Makefile.am +++ b/Makefile.am @@ -57,6 +57,7 @@ dist_pkgdata_SCRIPTS = dist_sbin_SCRIPTS = dist_scripts_SCRIPTS = INSTALL_DATA_LOCAL = +UNINSTALL_LOCAL = man_MANS = MAN_FRAGMENTS = noinst_DATA = @@ -165,7 +166,8 @@ dist-hook: $(DIST_HOOKS) all-local: $(ALL_LOCAL) clean-local: $(CLEAN_LOCAL) install-data-local: $(INSTALL_DATA_LOCAL) -.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) +uninstall-local: $(UNINSTALL_LOCAL) +.PHONY: $(DIST_HOOKS) $(CLEAN_LOCAL) $(INSTALL_DATA_LOCAL) $(UNINSTALL_LOCAL) include lib/automake.mk include ofproto/automake.mk diff --git a/ovsdb/ovsdbmonitor/automake.mk b/ovsdb/ovsdbmonitor/automake.mk index 49b24c1c..7e832ef3 100644 --- a/ovsdb/ovsdbmonitor/automake.mk +++ b/ovsdb/ovsdbmonitor/automake.mk @@ -43,7 +43,7 @@ DISTCLEANFILES += \ man_MANS += ovsdb/ovsdbmonitor/ovsdbmonitor.1 endif -uninstall-local: ovsdbmonitor-uninstall-local +UNINSTALL_LOCAL += ovsdbmonitor-uninstall-local ovsdbmonitor-uninstall-local: rm -f $(DESTDIR)$(bindir)/ovsdbmonitor diff --git a/python/ovs/automake.mk b/python/ovs/automake.mk index 4440c8c2..a1787ba5 100644 --- a/python/ovs/automake.mk +++ b/python/ovs/automake.mk @@ -42,6 +42,6 @@ ovs-install-data-local: endif install-data-local: ovs-install-data-local -uninstall-local: ovs-uninstall-local +UNINSTALL_LOCAL += ovs-uninstall-local ovs-uninstall-local: rm -f $(DESTDIR)$(pkgdatadir)/python/ovs/dirs.py -- 2.30.2