Add packaging/epson-inkjet-printer-escpr.changes file
[platform/upstream/epson-inkjet-printer-escpr.git] / src / Makefile.am
1 ## Makefile.am -- an automake template for a Makefile.in file
2 ## EPSON ESC/P-R Printer Driver for Linux
3 ## Copyright (C) 2000-2008 AVASYS CORPORATION.
4 ## Copyright (C) Seiko Epson Corporation 2000-2012.
5 ##  This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2 of the License, or
8 ## (at your option) any later version.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA.
18
19 cupsfilterdir = $(CUPS_FILTER_DIR)
20 ESCPR_LIB_DIR   =       ../escprlib
21
22 cupsfilter_PROGRAMS =                                                                   \
23         epson-escpr                                                                                             \
24         epson-escpr-wrapper
25
26 epson_escpr_wrapper_CFLAGS =                                                    \
27         -DCUPS_FILTER_NAME=\"epson-escpr\"                              \
28         -DCUPS_FILTER_PATH=\"/usr/lib/cups/filter\" 
29
30 epson_escpr_wrapper_SOURCES =                                                   \
31         wrapper.c
32
33 epson_escpr_CFLAGS =                                                                            \
34         -I$(top_srcdir)/lib                                                                     \
35         -DPAPER_PATH=\"$(pkgdatadir)/paper_list.csv\" 
36
37 epson_escpr_SOURCES =                                                                   \
38         filter.c                                                                                                        \
39         libprtX.h                                                                                               \
40         debug.c debug.h                                                                         \
41         pips.h                                                                                                  \
42         pipsDef.h                                                                                               \
43         optBase.h                                                                                               \
44         str.c str.h                                                                                             \
45         err.c err.h                                                                                             \
46         csv.c csv.h                                                                                             \
47         mem.c mem.h                                                                                             \
48         linux_cmn.h linux_cmn.c                                                         \
49         def.h
50
51 epson_escpr_LDADD = \
52         $(top_builddir)/lib/libescpr.la
53