Whitespace fixing.
[fwd] / Makefile.am
index eb33ab4..055a217 100644 (file)
@@ -24,6 +24,7 @@
 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 bin_PROGRAMS            =
+noinst_PROGRAMS                 =
 man_MANS                =
 
 EXTRA_DIST              =
@@ -36,7 +37,8 @@ AM_CFLAGS              = $(mLib_CFLAGS)
 ###--------------------------------------------------------------------------
 ### Documentation.
 
-make_manpage            = perl $(srcdir)/make-manpage <$(srcdir)/fwd.1.in
+make_manpage            = $(AM_V_GEN)perl \
+                               $(srcdir)/make-manpage <$(srcdir)/fwd.1.in
 EXTRA_DIST             += fwd.1.in make-manpage
 
 ## The manual page.
@@ -88,7 +90,6 @@ fwd_SOURCES           += file.c
 
 ## Executables.
 fwd_SOURCES            += exec.c
-fwd_SOURCES            += rlimits.h
 
 ## Documentation.
 fwd_SOURCES            += mantext.c
@@ -99,6 +100,13 @@ mantext.c: fwd.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.
@@ -111,6 +119,7 @@ dist-hook:
 ## Main Debian files.
 EXTRA_DIST             += debian/rules
 EXTRA_DIST             += debian/changelog
+EXTRA_DIST             += debian/compat
 EXTRA_DIST             += debian/control
 EXTRA_DIST             += debian/copyright
 
@@ -118,8 +127,4 @@ EXTRA_DIST          += debian/copyright
 EXTRA_DIST             += debian/fwd.init
 EXTRA_DIST             += debian/fwd.postinst
 
-## Compatbility cruft.
-EXTRA_DIST             += debian/fw.sh
-EXTRA_DIST             += debian/fw.README.Debian
-
 ###----- That's all, folks --------------------------------------------------