diff options
author | Thomas Guyot-Sionnest <dermoth@solaris.beaubien.net> | 2008-11-23 11:19:27 -0500 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@solaris.beaubien.net> | 2008-11-23 13:34:19 -0500 |
commit | c0a75482b4dca777d2578e2e46a380adf13c6f3e (patch) | |
tree | fb3520b726add5785a8092eaac33e225208d5777 /plugins/Makefile.am | |
parent | 39cc4c40315644026965aebfa9e6ac537db1a89a (diff) | |
download | monitoring-plugins-c0a75482b4dca777d2578e2e46a380adf13c6f3e.tar.gz |
Avoid the use of .PHONY (target s created twice and I have no idea if it's right).
Diffstat (limited to 'plugins/Makefile.am')
-rw-r--r-- | plugins/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 59876902..10fb06c6 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -2,6 +2,8 @@ NP-VERSION-FILE: .FORCE-NP-VERSION-FILE @$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN +.FORCE-NP-VERSION-FILE: + -include NP-VERSION-FILE AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"' @@ -177,5 +179,3 @@ clean-local: uninstall-local: cd $(DESTDIR)$(libexecdir) && rm -f $(check_tcp_programs) -.PHONY: .FORCE-NP-VERSION-FILE - |