1## $Id: Makefile.am,v 1.48 2007/01/26 01:04:52 rlk Exp $
2## Copyright (C) 2000 Roger Leigh
3##
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2, or (at your option)
7## any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18## Process this file with automake to produce Makefile.in.
19
20@SET_MAKE@
21
22include $(top_srcdir)/scripts/global.mk
23
24
25## Variables
26
27LOCAL_CPPFLAGS = -I$(top_srcdir)/src/main $(GUTENPRINT_CFLAGS)
28
29TESTS = curve run-testdither run-weavetest
30
31## Programs
32
33if BUILD_TEST
34noinst_PROGRAMS = testdither escp2-weavetest unprint pcl-unprint bjc-unprint curve xml-curve pixma_parse
35endif
36
37escp2_weavetest_SOURCES = escp2-weavetest.c
38escp2_weavetest_LDADD = $(GUTENPRINT_LIBS)
39
40unprint_SOURCES = unprint.c
41unprint_LDADD = $(GUTENPRINT_LIBS)
42
43curve_SOURCES = curve.c
44curve_LDADD = $(GUTENPRINT_LIBS)
45
46pcl_unprint_SOURCES = pcl-unprint.c
47pcl_unprint_LDADD = $(GUTENPRINT_LIBS)
48
49bjc_unprint_SOURCES = bjc-unprint.c
50bjc_unprint_LDADD = $(GUTENPRINT_LIBS)
51
52testdither_SOURCES = testdither.c
53testdither_LDADD = $(GUTENPRINT_LIBS)
54
55xml_curve_SOURCES = xml-curve.c
56xml_curve_LDADD = $(GUTENPRINT_LIBS)
57
58pixma_parse_SOURCES = pixma_parse.c pixma_parse.h
59
60## Rules
61
62#run-weavetest: escp2-weavetest
63
64
65## Clean
66
67CLEANFILES = mixed-color-1bit.ppm
68MAINTAINERCLEANFILES = Makefile.in
69
70EXTRA_DIST = cyan-sweep.tif parse-escp2 run-weavetest run-testdither
71