mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
32 lines
683 B
Makefile
32 lines
683 B
Makefile
AM_CPPFLAGS = \
|
|
-DSRCDIR=\"$(abs_srcdir)\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
$(GTK_DEBUG_FLAGS) \
|
|
$(GTK_DEP_CFLAGS)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/gtk/libgtk-3.la \
|
|
$(top_builddir)/gdk/libgdk-3.la \
|
|
$(GTK_DEP_LIBS)
|
|
|
|
noinst_PROGRAMS = bloatpad
|
|
|
|
|
|
bloatpad_SOURCES = bloatpad.c
|
|
nodist_bloatpad_SOURCES = bloatpad-gresources.c
|
|
|
|
resource_files = \
|
|
bloatpad.gresources.xml \
|
|
gtk/menus.ui
|
|
|
|
bloatpad-gresources.c: $(resource_files)
|
|
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source $<
|
|
|
|
CLEANFILES = bloatpad-gresources.c
|
|
|
|
EXTRA_DIST = $(resource_files)
|
|
|
|
-include $(top_srcdir)/git.mk
|