mirror of
https://github.com/brl/mutter.git
synced 2024-11-26 10:00:45 -05:00
[build] Move all the compiler flags to AM_CFLAGS
The INCLUDES directive should only contain pre-processor flags, since we're passing it also to the introspection scanner. Using AM_CFLAGS for compiler flags, like debug flags and maintainer flags, is more indicated.
This commit is contained in:
parent
f4df307ddd
commit
82f83ffbfb
@ -33,11 +33,9 @@ INCLUDES = \
|
|||||||
-DG_DISABLE_DEPRECATED \
|
-DG_DISABLE_DEPRECATED \
|
||||||
-DG_LOG_DOMAIN=\"Clutter\" \
|
-DG_LOG_DOMAIN=\"Clutter\" \
|
||||||
$(CLUTTER_CFLAGS) \
|
$(CLUTTER_CFLAGS) \
|
||||||
$(CLUTTER_DEBUG_CFLAGS) \
|
|
||||||
$(MAINTAINER_CFLAGS) \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
AM_CFLAGS=$(GCC_FLAGS)
|
AM_CFLAGS = $(GCC_FLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
|
||||||
|
|
||||||
LDADD = \
|
LDADD = \
|
||||||
$(CLUTTER_LT_LDFLAGS) \
|
$(CLUTTER_LT_LDFLAGS) \
|
||||||
|
Loading…
Reference in New Issue
Block a user