mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
d14e9a14ad
2006-06-20 Christian Persch <chpe@cvs.gnome.org> * configure.in * gtk/Makefile.am * modules/printbackends/Makefile.am A modules/printbackends/file/.cvsignore A modules/printbackends/file/Makefile.am A modules/printbackends/file/gtkprintbackendfile.c A modules/printbackends/file/gtkprintbackendfile.h R modules/printbackends/pdf/*: Rename "pdf" backend to "file" backend. Step 2 from bug #339592.
34 lines
740 B
Makefile
34 lines
740 B
Makefile
if OS_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends
|
|
|
|
backend_LTLIBRARIES = libprintbackend-file.la
|
|
|
|
libprintbackend_file_la_SOURCES = \
|
|
gtkprintbackendfile.c
|
|
|
|
libprintbackend_file_la_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gtk \
|
|
-I$(top_builddir)/gtk \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \
|
|
$(AM_CPPFLAGS)
|
|
|
|
libprintbackend_file_la_CFLAGS = \
|
|
$(GTK_DEP_CFLAGS) \
|
|
$(AM_CFLAGS)
|
|
|
|
libprintbackend_file_la_LDFLAGS = \
|
|
-avoid-version -module $(no_undefined)
|
|
|
|
libprintbackend_file_la_LIBADD = \
|
|
$(top_builddir)/gtk/$(gtktargetlib) \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gtkprintbackendfile.h
|