mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +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.
52 lines
922 B
Makefile
52 lines
922 B
Makefile
|
|
# these have a handrolled Makefile that gets in the way of distchecking
|
|
# so they will not be included in tarballs until they get integrated
|
|
# in the new 'getting started' section of the docs
|
|
OLD_EXAMPLES = \
|
|
arrow \
|
|
aspectframe \
|
|
base \
|
|
buttonbox \
|
|
buttons \
|
|
calendar \
|
|
entry \
|
|
eventbox \
|
|
fixed \
|
|
frame \
|
|
gtkdial \
|
|
helloworld \
|
|
helloworld2 \
|
|
label \
|
|
menu \
|
|
notebook \
|
|
packbox \
|
|
paned \
|
|
progressbar \
|
|
radiobuttons \
|
|
rangewidgets \
|
|
rulers \
|
|
scribble-simple \
|
|
scribble-xinput \
|
|
scrolledwin \
|
|
selection \
|
|
spinbutton \
|
|
statusbar \
|
|
table \
|
|
tictactoe \
|
|
wheelbarrow
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DGDK_DISABLE_DEPRECATED \
|
|
-DGTK_DISABLE_DEPRECATED \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/gtk/libgtk-3.0.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
noinst_PROGRAMS = hello-world window-default
|