diff options
author | Dodji Seketeli <dodji@src.gnome.org> | 2003-04-30 15:09:45 +0000 |
---|---|---|
committer | Dodji Seketeli <dodji@src.gnome.org> | 2003-04-30 15:09:45 +0000 |
commit | b47fd11c9ed73f70b8621bedb3213f7b1f63af31 (patch) | |
tree | 593c141cee021f5fc2e3bc351a7be2ee201ef899 /csslint | |
parent | 96eb828324586686a9aa9bb4a0765e3542499d7f (diff) | |
download | libcroco-b47fd11c9ed73f70b8621bedb3213f7b1f63af31.tar.gz |
fixed #111895 Dodji.
* configure.in, csslint/Makefile.am, src/parser/Makefile.am, src/seleng/Makefile.am, src/layeng/Makefile.am:
fixed #111895
Dodji.
Diffstat (limited to 'csslint')
-rw-r--r-- | csslint/Makefile.am | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/csslint/Makefile.am b/csslint/Makefile.am index d122ff1..c55f84d 100644 --- a/csslint/Makefile.am +++ b/csslint/Makefile.am @@ -3,16 +3,26 @@ man_MANS = csslint.1 csslint_SOURCES = csslint.c -LDADD=$(top_srcdir)/src/parser/libcroco.la +croco_parser_lib=$(top_builddir)/src/parser/@CROCO_PARSER_LIB@ + +if HAVE_SELENG +croco_seleng_lib=$(top_builddir)/src/seleng/@CROCO_SELENG_LIB@ +endif + +if HAVE_LAYENG +croco_layeng_lib=$(top_builddir)/src/layeng/@CROCO_LAYENG_LIB@ +endif + +LDADD=@GLIB2_LIBS@ $(croco_parser_lib) $(croco_seleng_lib) $(croco_layeng_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 \ - `pkg-config --cflags glib-2.0` + @GLIB2_CFLAGS@ @LIBXML2_CFLAGS@ @LIBGNOMEUI2_CFLAGS@ + +AM_CFLAGS=$(INCLUDES) -LDFLAGS=@CROCO_LIBS@ -AM_CFLAGS=-Wall -I. @CROCO_CFLAGS@ EXTRA_DIST = $(man_MANS) |