1## $Id: Makefile.am,v 1.10 2010/08/11 00:26:09 rlk Exp $
2## Copyright (C) 2008 Robert Krawitz
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## Variables
25
26pkgxmldatadir = $(pkgdatadir)/@GUTENPRINT_MAJOR_VERSION@.@GUTENPRINT_MINOR_VERSION@/xml/escp2/inputslots
27
28pkgxmldata_DATA =				\
29	artisan.xml				\
30	b500.xml				\
31	cd.xml					\
32	cd_cutter_roll_feed.xml			\
33	cd_roll_feed.xml			\
34	cutter_roll_feed.xml			\
35	default.xml				\
36	pro3880.xml				\
37	pro_roll_feed.xml			\
38	pro_cutter_roll_feed.xml		\
39	r1800.xml				\
40	r2400.xml				\
41	r2880.xml				\
42	rx680.xml				\
43	rx700.xml				\
44	spro5000.xml				\
45	standard_roll_feed.xml
46
47xml-stamp: $(pkgxmldata_DATA) Makefile.am
48	-rm -f $@ $@.tmp
49	touch $@.tmp
50	for f in $(pkgxmldata_DATA) ; do echo $$f >> $@.tmp; done
51	mv $@.tmp $@
52
53all-local: xml-stamp
54
55dist-hook: xml-stamp
56CLEANFILES = xmli18n-tmp.h xml-stamp xml-stamp.tmp
57
58EXTRA_DIST = $(pkgxmldata_DATA)
59