mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 09:10:11 +00:00
07d49ee56a
This commit does a number of things: - remove some dead wchar configury from configure.ac and gdkconfig.h - repurpose gdkconfig.h as header that contains GDK_WINDOWING_foo macros for each included backend, include it in gdk.h and install it in $includedir instead of below $libdir - drop the backend from the library names - build libgdk-3.0.la as a convenience lib and include it in libgtk-3.0.la It does not yet enable building multiple backends at the same time.
38 lines
811 B
Makefile
38 lines
811 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
backenddir = $(libdir)/gtk-3.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/libgtk-3.0.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gtkprintbackendfile.h
|
|
|
|
-include $(top_srcdir)/git.mk
|