## Process this file with automake to produce Makefile.in ## Copyright (C) 2010 Colin Watson. ## ## This file is part of libpipeline. ## ## libpipeline is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2 of the License, or (at ## your option) any later version. ## ## libpipeline is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with libpipeline; if not, write to the Free Software ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 ## USA # basic deliberately comes first so that any fundamental problems are more # obviously attributed to it. TESTS = \ basic \ argstr \ exec \ inspect \ pump \ read \ redirect check_PROGRAMS = $(TESTS) LIBS = ../gnulib/lib/libgnu.la $(LTLIBOBJS) $(top_builddir)/lib/libpipeline.la AM_CPPFLAGS = \ -I$(top_srcdir)/gnulib/lib \ -I$(top_builddir)/gnulib/lib \ -I$(top_srcdir)/lib AM_CFLAGS = $(WARN_CFLAGS) @CHECK_CFLAGS@ clean-local: rm -f testtmp.* basic_SOURCES = basic.c common.c common.h basic_LDADD = $(LIBS) @CHECK_LIBS@ argstr_SOURCES = argstr.c common.c common.h argstr_LDADD = $(LIBS) @CHECK_LIBS@ exec_SOURCES = exec.c common.c common.h exec_LDADD = $(LIBS) @CHECK_LIBS@ inspect_SOURCES = inspect.c common.c common.h inspect_LDADD = $(LIBS) @CHECK_LIBS@ pump_SOURCES = pump.c common.c common.h pump_LDADD = $(LIBS) @CHECK_LIBS@ read_SOURCES = read.c common.c common.h read_LDADD = $(LIBS) @CHECK_LIBS@ redirect_SOURCES = redirect.c common.c common.h redirect_LDADD = $(LIBS) @CHECK_LIBS@