blob: e6654d0d712e7dc90e7c65acd828feb7a4fa060d (
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
|
bin_PROGRAMS = simple-scan
simple_scan_SOURCES = \
book.c \
book.h \
book-view.c \
book-view.h \
page.c \
page.h \
page-view.c \
page-view.h \
simple-scan.c \
scanner.c \
scanner.h \
ui.c \
ui.h
simple_scan_CFLAGS = \
$(SIMPLE_SCAN_CFLAGS) \
$(WARN_CFLAGS) \
-DVERSION=\"$(VERSION)\" \
-DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
-DLOCALE_DIR=\"$(localedir)\" \
-DUI_DIR=\"$(datadir)/simple-scan/\" \
-DICON_DIR=\"$(datadir)/simple-scan/icons\" \
-DGCONF_DIR=\"/apps/simple-scan\" \
-DSIMPLE_SCAN_BINARY=\"simple-scan\"
simple_scan_LDADD = \
$(SIMPLE_SCAN_LIBS) \
-lsane \
-lm
DISTCLEANFILES = \
Makefile.in
|