mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 23:10:22 +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.
31 lines
580 B
Makefile
31 lines
580 B
Makefile
include $(top_srcdir)/Makefile.decl
|
|
|
|
NULL=
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS)
|
|
|
|
AM_CPPFLAGS = \
|
|
$(GDK_DEP_CFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir)/gdk \
|
|
$(NULL)
|
|
|
|
progs_ldadd = \
|
|
$(GDK_DEP_LIBS) \
|
|
$(top_builddir)/gdk/libgdk-$(GTK_API_VERSION).la \
|
|
$(NULL)
|
|
|
|
#TEST_PROGS += check-gdk-cairo
|
|
check_gdk_cairo_SOURCES = check-gdk-cairo.c
|
|
check_gdk_cairo_LDADD = $(progs_ldadd)
|
|
|
|
TEST_PROGS += gdk-color
|
|
gdk_color_SOURCES = gdk-color.c
|
|
gdk_color_LDADD = $(progs_ldadd)
|
|
|
|
CLEANFILES = \
|
|
cairosurface.png \
|
|
gdksurface.png
|
|
|
|
-include $(top_srcdir)/git.mk
|