summaryrefslogtreecommitdiff
path: root/src/testpattern/Makefile.am
blob: 8e3089d95a508552bb2518d2b7c2dbff3622458f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
## Copyright (C) 2000 Roger Leigh
##
## This program 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, or (at your option)
## any later version.
##
## This program 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 this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

## Process this file with automake to produce Makefile.in.

@SET_MAKE@

include $(top_srcdir)/scripts/global.mk


## Variables

pkgdatadir = $(datadir)/$(PACKAGE)/samples

TESTS = run-testpattern-1 run-testpattern-2


## Programs

if BUILD_TESTPATTERN
bin_PROGRAMS = testpattern
noinst_PROGRAMS = printers printer_options
noinst_SCRIPTS = run-testpattern-2 compare-checksums compress-checksums uncompress-checksums
endif

AM_LFLAGS = -i
AM_YFLAGS = -d

testpattern_SOURCES = testpattern.c testpatterny.y testpatternl.l testpattern.h
testpattern_LDADD = $(GUTENPRINT_LIBS) $(LIBM)

testpatternl.o: testpatterny.o
testpattern.o: testpatterny.o

printers_LDADD = $(GUTENPRINT_LIBS)
printer_options_LDADD = $(GUTENPRINT_LIBS)


## Data

if INSTALL_SAMPLES
pkgdata_DATA = testpattern.sample extended.sample
endif

## Generate checksums

if BUILD_TESTPATTERN
checksums: testpattern run-testpattern-2 ./compress-checksums
	$(MKDIR_P) Checksums
	./run-testpattern-2 -q -M Checksums/sums.@GUTENPRINT_VERSION@.in
	./compress-checksums < Checksums/sums.@GUTENPRINT_VERSION@.in |$(BZIP2) -c > Checksums/sums.@GUTENPRINT_VERSION@.bz2
	rm -f Checksums/sums.@GUTENPRINT_VERSION@.in
endif

## Clean

MAINTAINERCLEANFILES = Makefile.in testpatternl.c testpatterny.c testpatterny.h

EXTRA_DIST = \
	testpatterny.h \
	$(pkgdata_DATA) \
	run-testpattern \
	run-testpattern-1 \
	compare-checksums.in \
	compress-checksums.in \
	uncompress-checksums.in