mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-11 23:16:14 +01:00
Silence automake
automake doesn't like INCLUDES anymore.
This commit is contained in:
parent
0336eb67a2
commit
ab328469f5
@ -84,7 +84,7 @@ IGNORE_HFILES = \
|
|||||||
|
|
||||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
||||||
# if $(DOC_MODULE).types is non-empty.
|
# if $(DOC_MODULE).types is non-empty.
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
$(gio_INCLUDES) \
|
$(gio_INCLUDES) \
|
||||||
$(GLIB_DEBUG_FLAGS)
|
$(GLIB_DEBUG_FLAGS)
|
||||||
|
|
||||||
|
@ -17,16 +17,16 @@ HFILE_GLOB=$(top_builddir)/gio/tests/gdbus-object-manager-example/*.h
|
|||||||
CFILE_GLOB=$(top_builddir)/gio/tests/gdbus-object-manager-example/*.c
|
CFILE_GLOB=$(top_builddir)/gio/tests/gdbus-object-manager-example/*.c
|
||||||
|
|
||||||
# Headers to ignore
|
# Headers to ignore
|
||||||
IGNORE_HFILES= \
|
IGNORE_HFILES = \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
||||||
# if $(DOC_MODULE).types is non-empty.
|
# if $(DOC_MODULE).types is non-empty.
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
$(gio_INCLUDES) \
|
$(gio_INCLUDES) \
|
||||||
$(GLIB_DEBUG_FLAGS)
|
$(GLIB_DEBUG_FLAGS)
|
||||||
|
|
||||||
GTKDOC_LIBS = \
|
GTKDOC_LIBS = \
|
||||||
$(top_builddir)/glib/libglib-2.0.la \
|
$(top_builddir)/glib/libglib-2.0.la \
|
||||||
$(top_builddir)/gobject/libgobject-2.0.la \
|
$(top_builddir)/gobject/libgobject-2.0.la \
|
||||||
$(top_builddir)/gmodule/libgmodule-2.0.la \
|
$(top_builddir)/gmodule/libgmodule-2.0.la \
|
||||||
|
@ -33,11 +33,12 @@ IGNORE_HFILES = \
|
|||||||
|
|
||||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
# CFLAGS and LDFLAGS for compiling scan program. Only needed
|
||||||
# if $(DOC_MODULE).types is non-empty.
|
# if $(DOC_MODULE).types is non-empty.
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
-I$(srcdir) \
|
-I$(srcdir) \
|
||||||
$(gobject_INCLUDES) \
|
$(gobject_INCLUDES) \
|
||||||
$(GLIB_DEBUG_FLAGS)
|
$(GLIB_DEBUG_FLAGS)
|
||||||
GTKDOC_LIBS = \
|
|
||||||
|
GTKDOC_LIBS = \
|
||||||
$(top_builddir)/glib/libglib-2.0.la \
|
$(top_builddir)/glib/libglib-2.0.la \
|
||||||
$(top_builddir)/gobject/libgobject-2.0.la
|
$(top_builddir)/gobject/libgobject-2.0.la
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@ include $(top_srcdir)/Makefile.decl
|
|||||||
NULL =
|
NULL =
|
||||||
bin_SCRIPTS =
|
bin_SCRIPTS =
|
||||||
CLEANFILES =
|
CLEANFILES =
|
||||||
EXTRA_DIST =
|
|
||||||
|
|
||||||
codegendir = $(datadir)/glib-2.0/codegen
|
codegendir = $(datadir)/glib-2.0/codegen
|
||||||
codegen_PYTHON = \
|
codegen_PYTHON = \
|
||||||
|
@ -6,14 +6,14 @@ include $(top_srcdir)/Makefile.decl
|
|||||||
|
|
||||||
SUBDIRS = gdbus-object-manager-example services
|
SUBDIRS = gdbus-object-manager-example services
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
-DG_LOG_DOMAIN=\"GLib-GIO\" \
|
-DG_LOG_DOMAIN=\"GLib-GIO\" \
|
||||||
$(gio_INCLUDES) \
|
$(gio_INCLUDES) \
|
||||||
$(GLIB_DEBUG_FLAGS) \
|
$(GLIB_DEBUG_FLAGS) \
|
||||||
-I$(top_builddir)/gio \
|
-I$(top_builddir)/gio \
|
||||||
-I$(top_srcdir)/gio \
|
-I$(top_srcdir)/gio \
|
||||||
$(DBUS1_CFLAGS) \
|
$(DBUS1_CFLAGS) \
|
||||||
-DSRCDIR=\""$(srcdir)"\" \
|
-DSRCDIR=\""$(srcdir)"\" \
|
||||||
-DTEST_SERVICES=\""$(abs_top_builddir)/gio/tests/services"\"
|
-DTEST_SERVICES=\""$(abs_top_builddir)/gio/tests/services"\"
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ CLEANFILES =
|
|||||||
|
|
||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
-g \
|
-g \
|
||||||
$(gio_INCLUDES) \
|
$(gio_INCLUDES) \
|
||||||
$(GLIB_DEBUG_FLAGS) \
|
$(GLIB_DEBUG_FLAGS) \
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
INCLUDES = $(glib_INCLUDES) -DG_LOG_DOMAIN=\"GLib\" \
|
AM_CPPFLAGS = \
|
||||||
$(GLIB_DEBUG_FLAGS) -DG_DISABLE_DEPRECATED -DGLIB_COMPILATION
|
$(glib_INCLUDES) \
|
||||||
|
-DG_LOG_DOMAIN=\"GLib\" \
|
||||||
|
$(GLIB_DEBUG_FLAGS) \
|
||||||
|
-DG_DISABLE_DEPRECATED \
|
||||||
|
-DGLIB_COMPILATION
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libgnulib.la
|
noinst_LTLIBRARIES = libgnulib.la
|
||||||
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
## Process this file with automake to produce Makefile.in
|
## Process this file with automake to produce Makefile.in
|
||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
-DLIBDIR=\"$(libdir)\" $(config_h_INCLUDES)
|
-DLIBDIR=\"$(libdir)\" \
|
||||||
|
$(config_h_INCLUDES)
|
||||||
|
|
||||||
noinst_LTLIBRARIES = libcharset.la
|
noinst_LTLIBRARIES = libcharset.la
|
||||||
|
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
AM_CPPFLAGS = \
|
AM_CPPFLAGS = \
|
||||||
-DG_LOG_DOMAIN=\"GLib-GObject\"
|
-g \
|
||||||
|
-DG_LOG_DOMAIN=\"GLib-GObject\" \
|
||||||
INCLUDES = -g $(gobject_INCLUDES) $(GLIB_DEBUG_FLAGS)
|
$(gobject_INCLUDES) \
|
||||||
|
$(GLIB_DEBUG_FLAGS)
|
||||||
|
|
||||||
if CROSS_COMPILING
|
if CROSS_COMPILING
|
||||||
glib_genmarshal=$(GLIB_GENMARSHAL)
|
glib_genmarshal=$(GLIB_GENMARSHAL)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
$(gmodule_INCLUDES) \
|
$(gmodule_INCLUDES) \
|
||||||
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
||||||
$(GLIB_DEBUG_FLAGS)
|
$(GLIB_DEBUG_FLAGS)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
include $(top_srcdir)/Makefile.decl
|
include $(top_srcdir)/Makefile.decl
|
||||||
|
|
||||||
INCLUDES = \
|
AM_CPPFLAGS = \
|
||||||
$(gmodule_INCLUDES) \
|
$(gmodule_INCLUDES) \
|
||||||
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
||||||
$(GLIB_DEBUG_FLAGS)
|
$(GLIB_DEBUG_FLAGS)
|
||||||
|
Loading…
Reference in New Issue
Block a user