1# Copyright (C) 2008-2013 Assaf Gordon <assafgordon@gmail.com>
2#
3# This file is free software; as a special exception the author gives
4# unlimited permission to copy and/or distribute it, with or without
5# modifications, as long as this notice is preserved.
6#
7# This program is distributed in the hope that it will be useful, but
8# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10
11
12bin_PROGRAMS = fastx_clipper
13
14AM_CPPFLAGS = \
15	$(CC_WARNINGS) \
16	-I$(top_srcdir)/src/libfastx
17
18fastx_clipper_SOURCES = fastx_clipper.cpp
19
20fastx_clipper_LDADD = ../libfastx/libfastx.a $(LT_LDFLAGS)
21
22