From: Ben Pfaff Date: Thu, 25 Aug 2011 17:19:23 +0000 (-0700) Subject: Mark "uninstall-local" targets phony. X-Git-Tag: v1.3.0~291 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=44852fdf6335927b44ac7ebb348efa782a7f08de;p=sliver-openvswitch.git Mark "uninstall-local" targets phony. --- diff --git a/Makefile.am b/Makefile.am index fba63b054..ec674b773 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 49b24c1c5..7e832ef3d 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 4440c8c28..a1787ba5c 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