X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/47a7631fc173b345182df04f67523d3b2fe4ba83..a9bd543ab4ebe415bca9d6f27b90f16ddac79bc0:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 6236c92..3c5ca14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,6 +24,7 @@ ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. bin_PROGRAMS = +noinst_PROGRAMS = man_MANS = EXTRA_DIST = @@ -99,6 +100,13 @@ mantext.c: fw.1.in make-manpage $(make_manpage) c >$@.new && mv $@.new $@ ###-------------------------------------------------------------------------- +### The blast tool. + +noinst_PROGRAMS += blast +blast_SOURCES = blast.c +blast_LDADD = $(mLib_LIBS) + +###-------------------------------------------------------------------------- ### Other infrastructure. ## Set the release number. @@ -108,9 +116,14 @@ dist-hook: ###-------------------------------------------------------------------------- ### Debian. +## Main Debian files. EXTRA_DIST += debian/rules EXTRA_DIST += debian/changelog EXTRA_DIST += debian/control EXTRA_DIST += debian/copyright +## Run the daemon automatically. +EXTRA_DIST += debian/fw.init +EXTRA_DIST += debian/fw.postinst + ###----- That's all, folks --------------------------------------------------