X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/2e35470f549072426bf493c73dceff108a05f3b1..85b239ad6c917a76b8ab81fc182c03d28255bdcb:/contrib/Makefile.am diff --git a/contrib/Makefile.am b/contrib/Makefile.am index 8802b62a..8dfc7106 100644 --- a/contrib/Makefile.am +++ b/contrib/Makefile.am @@ -26,6 +26,7 @@ include $(top_srcdir)/vars.am noinst_DATA = +noinst_SCRIPTS = ###-------------------------------------------------------------------------- ### Contributions. @@ -52,4 +53,24 @@ tripe-upstart: tripe-upstart.in Makefile $(SUBST) $(srcdir)/tripe-upstart.in >$@.new $(SUBSTITUTIONS) && \ mv $@.new $@ +## `greet' utility for stimulating passive connections. +if HAVE_PYTHON +noinst_SCRIPTS += greet +EXTRA_DIST += greet.in +CLEANFILES += greet + +greet: greet.in Makefile + $(SUBST) $(srcdir)/greet.in >$@.new $(SUBSTITUTIONS) && \ + chmod +x $@.new && mv $@.new $@ +endif + +## `knock' script for accepting incoming dynamic associations. +noinst_SCRIPTS += knock +EXTRA_DIST += knock.in +CLEANFILES += knock + +knock: knock.in Makefile + $(SUBST) $(srcdir)/knock.in >$@.new $(SUBSTITUTIONS) && \ + chmod +x $@.new && mv $@.new $@ + ###----- That's all, folks --------------------------------------------------