blob: fa0e07da25f7afe81200b57e4fa9ca73dc916f55 (
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
|
cupsfilterdir = $(CUPS_FILTER_DIR)
ESCPR_LIB_DIR = ../escprlib
cupsfilter_PROGRAMS = \
epson-escpr \
epson-escpr-wrapper
epson_escpr_wrapper_CFLAGS = \
-DCUPS_FILTER_NAME=\"epson-escpr\" \
-DCUPS_FILTER_PATH=\"/usr/lib/cups/filter\"
epson_escpr_wrapper_SOURCES = \
wrapper.c
epson_escpr_CFLAGS = \
-I$(top_srcdir)/lib \
-DPAPER_PATH=\"$(pkgdatadir)/paper_list.csv\"
epson_escpr_SOURCES = \
filter.c \
libprtX.h \
debug.c debug.h \
pips.h \
pipsDef.h \
optBase.h \
str.c str.h \
err.c err.h \
csv.c csv.h \
mem.c mem.h \
linux_cmn.h linux_cmn.c \
def.h
epson_escpr_LDADD = \
$(top_builddir)/lib/libescpr.la
|