]> Pileus Git - ~andy/gtk/blob - modules/printbackends/cups/Makefile.am
Add a 'value' GObject property to GtkPrinterOption so that it can be used with g_obje...
[~andy/gtk] / modules / printbackends / cups / Makefile.am
1 include $(top_srcdir)/Makefile.decl
2
3 if PLATFORM_WIN32
4 no_undefined = -no-undefined
5 endif
6
7 INCLUDES = \
8         -I$(top_srcdir)                                 \
9         -I$(top_srcdir)/gtk                             \
10         -I$(top_builddir)/gtk                           \
11         -I$(top_srcdir)/gdk                             \
12         -I$(top_builddir)/gdk                           \
13         $(CUPS_CFLAGS)                                  \
14         -DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED          \
15         $(GTK_DEP_CFLAGS)                               \
16         $(GTK_DEBUG_FLAGS)
17
18 LDADDS = \
19         $(top_builddir)/gtk/libgtk-3.la \
20         $(GTK_DEP_LIBS)
21
22 backenddir = $(libdir)/gtk-3.0/$(GTK_BINARY_VERSION)/printbackends
23
24 backend_LTLIBRARIES = libprintbackend-cups.la
25
26 libprintbackend_cups_la_SOURCES =       \
27         gtkprintbackendcups.c           \
28         gtkprintercups.c                \
29         gtkcupsutils.c
30
31 noinst_HEADERS =                        \
32         gtkprintbackendcups.h           \
33         gtkprintercups.h                \
34         gtkcupsutils.h
35
36 libprintbackend_cups_la_LDFLAGS =  -avoid-version -module $(no_undefined)
37 libprintbackend_cups_la_LIBADD = $(LDADDS) $(CUPS_LIBS)
38
39 -include $(top_srcdir)/git.mk