File: Makefile.am

package info (click to toggle)
libgnomeprintui 2.12.1-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,084 kB
  • ctags: 1,546
  • sloc: ansic: 13,158; sh: 8,490; xml: 1,755; makefile: 272
file content (45 lines) | stat: -rw-r--r-- 1,331 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
noinst_PROGRAMS = test-page-selector test-dialog test-preview simple

INCLUDES = \
	-I$(top_srcdir) \
	$(LIBGNOMEPRINTUI_CFLAGS) \
     -DWE_ARE_LIBGNOMEPRINT_INTERNALS \
	-DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
	-DBINDIR=\""$(bindir)"\" 	\
	-DDATADIR=\""$(datadir)"\"	\
	-DG_DISABLE_DEPRECATED		\
	-DGDK_DISABLE_DEPRECATED	\
	-DGDK_PIXBUF_DISABLE_DEPRECATED

if EXAMPLES_USE_LOCAL_LIBGNOMEPRINT
libgnomeprint_local=$(top_builddir)/../libgnomeprint/libgnomeprint/libgnomeprint-2-2.la
else
libgnomeprint_local=
endif

## including ../../libngomeprint/libgnomeprint/libgnomeprint-2.la is not very robust
## but it allows us to not have to make install in libgnomeprint to test new stuff
printui_libs = \
	$(top_builddir)/libgnomeprintui/libgnomeprintui-2-2.la \
	$(libgnomeprint_local) \
	$(LIBGNOMEPRINTUI_LIBS) \
	-lpopt

test_dialog_SOURCES = test-dialog.c
test_dialog_LDFLAGS =
test_dialog_DEPENDENCIES = $(DEPS)
test_dialog_LDADD = $(printui_libs)

test_preview_SOURCES = test-preview.c
test_preview_LDFLAGS =
test_preview_DEPENDENCIES = $(DEPS)
test_preview_LDADD = $(printui_libs)

test_page_selector_SOURCES = test-page-selector.c
test_page_selector_DEPENDENCIES = $(DEPS)
test_page_selector_LDADD = $(printui_libs)

simple_SOURCES = simple.c
simple_LDFLAGS =
simple_DEPENDENCIES = $(DEPS)
simple_LDADD = $(printui_libs);