2006-03-24 Alexander Larsson <alexl@redhat.com> Import print-operation into gtk+ * .cvsignore: * Makefile.am: * gtk+-unix-print-2.0.pc.in: Add gtk+-unix-print-2.0.pc * configure.in: Look for cups Look for various _NL_* extensions Output new makefiles and .pc.in * gtk/Makefile.am: Add new files * gtk/gtk.h: Include gtkprintoperation.h * gtk/gtkenums.h: Add printing enums * gtk/gtkmarshalers.list: Add required new marshallers * gtk/gtkpagesetup.[ch]: * gtk/gtkpagesetupunixdialog.[ch]: * gtk/gtkpagesetupunixdialog.h: * gtk/gtkpapersize.[ch]: * gtk/gtkprint-win32.[ch]: * gtk/gtkprintbackend.[ch]: * gtk/gtkprintcontext.[ch]: * gtk/gtkprinter-private.h: * gtk/gtkprinter.[ch]: * gtk/gtkprinteroption.[ch]: * gtk/gtkprinteroptionset.[ch]: * gtk/gtkprinteroptionwidget.[ch]: * gtk/gtkprintjob.[ch]: * gtk/gtkprintoperation-private.h: * gtk/gtkprintoperation-unix.c: * gtk/gtkprintoperation-win32.c: * gtk/gtkprintoperation.[ch]: * gtk/gtkprintsettings.[ch]: * gtk/gtkprintunixdialog.[ch]: * gtk/paper_names.c: Generic printing support * modules/Makefile.am: * modules/printbackends/Makefile.am: * modules/printbackends/cups/Makefile.am: * modules/printbackends/cups/gtkcupsutils.[ch]: * modules/printbackends/cups/gtkprintbackendcups.[ch]: * modules/printbackends/cups/gtkprintercups.[ch]: Cups backend * tests/.cvsignore: * tests/Makefile.am: * tests/print-editor.c: Add printing test app
34 lines
701 B
Makefile
34 lines
701 B
Makefile
if OS_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gtk \
|
|
-I$(top_builddir)/gtk \
|
|
-I$(top_srcdir)/gdk \
|
|
$(CUPS_CFLAGS) \
|
|
-DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
LDADDS = \
|
|
$(GTK_DEP_LIBS) \
|
|
$(top_builddir)/gtk/$(gtktargetlib)
|
|
|
|
backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends
|
|
|
|
backend_LTLIBRARIES = libcups.la
|
|
|
|
libcups_la_SOURCES = \
|
|
gtkprintbackendcups.c \
|
|
gtkprintercups.c \
|
|
gtkcupsutils.c
|
|
|
|
noinst_HEADERS = \
|
|
gtkprintbackendcups.h \
|
|
gtkprintercups.h \
|
|
gtkcupsutils.h
|
|
|
|
libcups_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libcups_la_LIBADD = $(LDADDS) $(CUPS_LIBS)
|