put global AM_CPPFLAGS at the front of the per-target variables for consistency

This commit is contained in:
Michael Ploujnikov 2008-08-30 13:32:24 -04:00
parent 387ba8c321
commit 859437794e
2 changed files with 3 additions and 1 deletions

View file

@ -27,6 +27,8 @@ BUILT_SOURCES =
EXTRA_DIST =
SUBDIRS =
# global pre-processor flags. Per-target variables should include
# these at the front (if possible) for consistency
AM_CPPFLAGS = -I$(top_srcdir)/src/ \
$(NOBUGMT_LUMIERA_CFLAGS)

View file

@ -24,5 +24,5 @@ vgsuppression_LDADD = liblumi.a $(NOBUGMT_LUMIERA_LIBS) -ldl
noinst_PROGRAMS += rsvg-convert
rsvg_convert_SOURCES = $(admin_srcdir)/rsvg-convert.c
rsvg_convert_CPPFLAGS = $(GTK_LUMIERA_CFLAGS) $(AM_CPPFLAGS) -std=gnu99 -Wall -Werror
rsvg_convert_CPPFLAGS = $(AM_CPPFLAGS) $(GTK_LUMIERA_CFLAGS) -std=gnu99 -Wall -Werror
rsvg_convert_LDADD = -lcairo -lglib-2.0 -lgthread-2.0 -lrsvg-2