summaryrefslogtreecommitdiff
path: root/csslint
diff options
context:
space:
mode:
authorDodji Seketeli <dodji@gnome.org>2003-12-11 13:45:42 +0000
committerDodji Seketeli <dodji@src.gnome.org>2003-12-11 13:45:42 +0000
commitf1f8ac3f1a3cb2f65a531ceabc4aec8ff5fc5359 (patch)
tree884c876ac98d19558191c4e38981d3e0bb52ef6d /csslint
parentbfc0cf3deb2be5ef8d44715afac960bbe61d0ba3 (diff)
downloadlibcroco-f1f8ac3f1a3cb2f65a531ceabc4aec8ff5fc5359.tar.gz
big cleanup here. make sure seleng, layeng and tests are disabled by
2003-12-11 Dodji Seketeli <dodji@gnome.org> * Makefile.am: big cleanup here. * configure.in: make sure seleng, layeng and tests are disabled by default. Added makefiles in docs/ docs/example tests/ tests/test-inputs tests/test-output-refs * csslint/Makefile.am: cleaned this up. make sure to add seleng,layeng and glib compile flags whenever needed. * docs/Makefile.am,docs/examples/Makefile.am: new makefiles. * src/libcroco.h: removed references to cr-parser-input.h * src/layeng/Makefile.am: cleanup, make distcheck is happier. * src/parser/Makefile.am: cleanup, make distcheck is happier. * src/parser/cr-doc-handler.h: removed reference to cr-parser-input.h * src/parser/cr-layout-eng.h,src/parser/cr-parser-input.h: removed these. * src/parser/cr-parser.c: (cr_parser_new): fixed a typo here. * src/parser/cr-parser.h,src/parser/cr-tknzr.h: removed ref to cr-parser-input.h * src/seleng/Makefile.am: cleanup, make distcheck is happier. * tests/testctl: exclude makefiles when diffing outputs and re * outputs.
Diffstat (limited to 'csslint')
-rw-r--r--csslint/Makefile.am8
1 files changed, 5 insertions, 3 deletions
diff --git a/csslint/Makefile.am b/csslint/Makefile.am
index 6931cce..7efc024 100644
--- a/csslint/Makefile.am
+++ b/csslint/Makefile.am
@@ -7,10 +7,12 @@ croco_parser_lib=$(top_builddir)/src/parser/@CROCO_PARSER_LIB@
if HAVE_SELENG
croco_seleng_lib=$(top_builddir)/src/seleng/@CROCO_SELENG_LIB@
+croco_seleng_cflags=-I$(top_srcdir)/src/seleng @LIBXML2_CFLAGS@
endif
if HAVE_LAYENG
croco_layeng_lib=$(top_builddir)/src/layeng/@CROCO_LAYENG_LIB@
+croco_layeng_cflags=-I$(top_srcdir)/src/layeng @LIBGNOMEUI2_CFLAGS@
endif
LDADD=$(croco_layeng_lib) $(croco_seleng_lib) $(croco_parser_lib)
@@ -18,9 +20,9 @@ LDADD=$(croco_layeng_lib) $(croco_seleng_lib) $(croco_parser_lib)
INCLUDES=-I$(top_srcdir)/intl \
-I$(top_srcdir)/src \
-I$(top_srcdir)/src/parser \
- -I$(top_srcdir)/src/seleng \
- -I$(top_srcdir)/src/layeng \
- @GLIB2_CFLAGS@ @LIBXML2_CFLAGS@ @LIBGNOMEUI2_CFLAGS@
+ @GLIB2_CFLAGS@ \
+ $(croco_seleng_cflags) \
+ $(croco_layeng_cflags)
AM_CFLAGS=$(INCLUDES)