diff options
author | Alessio Treglia <quadrispro@ubuntu.com> | 2010-04-09 13:10:42 +0200 |
---|---|---|
committer | Alessio Treglia <quadrispro@ubuntu.com> | 2010-04-09 13:10:42 +0200 |
commit | cf7d885d901b0abdccaad5cc3305a080744eaf5b (patch) | |
tree | bf56ba367a8a872dc562fcf8cce9af6aebae67af /src/Makefile.am |
Imported Upstream version 0.9.10upstream/0.9.10
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..e6654d0 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,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 |