Mercurial > hg > audiostuff
comparison spandsp-0.0.6pre17/test-data/etsi/fax/Makefile.am @ 4:26cd8f1ef0b1
import spandsp-0.0.6pre17
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Fri, 25 Jun 2010 15:50:58 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3:c6c5a16ce2f2 | 4:26cd8f1ef0b1 |
---|---|
1 ## | |
2 ## SpanDSP - a series of DSP components for telephony | |
3 ## | |
4 ## Makefile.am -- Process this file with automake to produce Makefile.in | |
5 ## | |
6 ## This program is free software; you can redistribute it and/or modify | |
7 ## it under the terms of the GNU General Public License version 2, as | |
8 ## published by the Free Software Foundation. | |
9 ## | |
10 ## This program is distributed in the hope that it will be useful, | |
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 ## GNU General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
16 ## along with this program; if not, write to the Free Software | |
17 ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 ## | |
19 ## $Id: Makefile.am,v 1.4 2009/02/25 17:52:51 steveu Exp $ | |
20 | |
21 AM_CFLAGS = $(COMP_VENDOR_CFLAGS) | |
22 | |
23 PBM2G3 = pbmtog3 | |
24 FAX2TIFF = fax2tiff | |
25 TIFFCP = tiffcp | |
26 | |
27 ETSI_TEST_PAGES = etsi_300_242_a4_diago1.tif \ | |
28 etsi_300_242_a4_diago2.tif \ | |
29 etsi_300_242_a4_duration1.tif \ | |
30 etsi_300_242_a4_duration2.tif \ | |
31 etsi_300_242_a4_error.tif \ | |
32 etsi_300_242_a4_impress.tif \ | |
33 etsi_300_242_a4_impress_white.tif \ | |
34 etsi_300_242_a4_stairstep.tif \ | |
35 etsi_300_242_a4_white.tif \ | |
36 etsi_300_242_a4_white_2p.tif | |
37 | |
38 EXTRA_DIST = | |
39 | |
40 MAINTAINERCLEANFILES = Makefile.in | |
41 | |
42 LIBDIR = -L$(top_builddir)/src | |
43 | |
44 nobase_data_DATA = ${ETSI_TEST_PAGES} | |
45 | |
46 noinst_PROGRAMS = generate_etsi_300_242_pages | |
47 | |
48 generate_etsi_300_242_pages_SOURCES = generate_etsi_300_242_pages.c | |
49 generate_etsi_300_242_pages_LDADD = $(LIBDIR) -lspandsp -ltiff | |
50 | |
51 clean: | |
52 rm -f *.tif *.g3 | |
53 | |
54 .g3.tif: | |
55 ${FAX2TIFF} -M -o $*.tif $*.g3 | |
56 | |
57 .pbm.g3: | |
58 ${PBM2G3} $*.pbm >$*.g3 | |
59 | |
60 ${ETSI_TEST_PAGES}: generate_etsi_300_242_pages$(EXEEXT) | |
61 ./generate_etsi_300_242_pages$(EXEEXT) |