X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/blobdiff_plain/a62f8e8a94bf56194539f7140a1215bc74309b36..408f7a2c28d32288e6d2e1935cd610fd8ff2b36a:/svc/Makefile.am diff --git a/svc/Makefile.am b/svc/Makefile.am index 3e392b4e..c9f98fe7 100644 --- a/svc/Makefile.am +++ b/svc/Makefile.am @@ -33,35 +33,30 @@ man_MANS = ###-------------------------------------------------------------------------- ### Services. -## Services manual page. -man_MANS += tripe-service.7 -CLEANFILES += tripe-service.7 -EXTRA_DIST += tripe-service.7.in - ## Handle dynamic connections. services_SCRIPTS += connect CLEANFILES += connect EXTRA_DIST += connect.in -man_MANS += connect.8 -CLEANFILES += connect.8 +man_MANS += connect.8tripe +CLEANFILES += connect.8tripe EXTRA_DIST += connect.8.in connect: connect.in Makefile - $(confsubst) $(srcdir)/connect.in >$@.new $(SUBSTITUTIONS) && \ + $(SUBST) $(srcdir)/connect.in >$@.new $(SUBSTITUTIONS) && \ chmod +x $@.new && mv $@.new $@ -## Watch for peers arriving and disconnecting. -services_SCRIPTS += watch -CLEANFILES += watch -EXTRA_DIST += watch.in +## Watch D-Bus to keep track of external connectivity. +services_SCRIPTS += conntrack +CLEANFILES += conntrack +EXTRA_DIST += conntrack.in -man_MANS += watch.8 -CLEANFILES += watch.8 -EXTRA_DIST += watch.8.in +man_MANS += conntrack.8tripe +CLEANFILES += conntrack.8tripe +EXTRA_DIST += conntrack.8.in -watch: watch.in Makefile - $(confsubst) $(srcdir)/watch.in >$@.new $(SUBSTITUTIONS) && \ +conntrack: conntrack.in Makefile + $(SUBST) $(srcdir)/conntrack.in >$@.new $(SUBSTITUTIONS) && \ chmod +x $@.new && mv $@.new $@ ## Bring up an interface. @@ -69,13 +64,12 @@ sbin_SCRIPTS = tripe-ifup CLEANFILES += tripe-ifup EXTRA_DIST += tripe-ifup.in -man_MANS += tripe-ifup.8 -CLEANFILES += tripe-ifup.8 +man_MANS += tripe-ifup.8tripe +CLEANFILES += tripe-ifup.8tripe EXTRA_DIST += tripe-ifup.8.in tripe-ifup: tripe-ifup.in Makefile - $(confsubst) $(srcdir)/tripe-ifup.in >$@.new $(SUBSTITUTIONS) && \ + $(SUBST) $(srcdir)/tripe-ifup.in >$@.new $(SUBSTITUTIONS) && \ chmod +x $@.new && mv $@.new $@ ###----- That's all, folks -------------------------------------------------- -