mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
524ce69bcb
At the same time, change the library sonames for -3.0 to just -3. This is necessary since the 2.99 releases installed libraries like libgtk-3.0.so.0.9903.0, and we want to prevent the library version number from jumping back. So 3.0 will have libgtk-3.so.0.0.0.
63 lines
1.1 KiB
Makefile
63 lines
1.1 KiB
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.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
drawing_LDADD = $(LDADD) \
|
|
$(top_builddir)/gdk/libgdk-3.la
|
|
|
|
noinst_PROGRAMS = \
|
|
hello-world \
|
|
window-default \
|
|
bloatpad \
|
|
grid-packing \
|
|
drawing \
|
|
builder
|
|
|
|
EXTRA_DIST = builder.ui
|