mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
4d8b2af13a
Move bloatpad to ./examples/bp/ so that we can start treating it as more of a "normal" app instead of just jamming everything into a single .c file. We don't use the name "bloatpad" for the directory in order not to create 'git pull' pain with the probably-already-existing executable of the same name. https://bugzilla.gnome.org/show_bug.cgi?id=722092
36 lines
676 B
Makefile
36 lines
676 B
Makefile
SUBDIRS = \
|
|
bp \
|
|
application1 application2 application3 \
|
|
application4 application5 application6 \
|
|
application7 application8 application9 \
|
|
application10
|
|
|
|
AM_CPPFLAGS = \
|
|
-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 \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
noinst_PROGRAMS = \
|
|
hello-world \
|
|
window-default \
|
|
plugman \
|
|
sunny \
|
|
action-namespace \
|
|
grid-packing \
|
|
drawing \
|
|
builder \
|
|
search-bar
|
|
|
|
EXTRA_DIST = builder.ui
|
|
|
|
-include $(top_srcdir)/git.mk
|