summaryrefslogtreecommitdiffstats
path: root/docs/reference
diff options
context:
space:
mode:
authorRomain Chantereay <rchantereau@entrouvert.com>2004-08-06 13:32:01 +0000
committerRomain Chantereay <rchantereau@entrouvert.com>2004-08-06 13:32:01 +0000
commited288aacd6bbb12c71b7c67b031ee0f9ed95849b (patch)
treeb534e17bb4dab8320c6d35cf88c167b293e56ee7 /docs/reference
parentb307a0014571a3a682c6f65c5a99dcaaaec57128 (diff)
downloadlasso-ed288aacd6bbb12c71b7c67b031ee0f9ed95849b.tar.gz
lasso-ed288aacd6bbb12c71b7c67b031ee0f9ed95849b.tar.xz
lasso-ed288aacd6bbb12c71b7c67b031ee0f9ed95849b.zip
Fixed reference docs make problems:
- Docs did not compile invoking top level make when enabled in configure. - Docs did not compile in references directory with make all. - Docs used the old substitution variables.
Diffstat (limited to 'docs/reference')
-rw-r--r--docs/reference/Makefile.am14
1 files changed, 4 insertions, 10 deletions
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index e61596cb..72db05dc 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -24,7 +24,7 @@ DOC_SOURCE_FILES=\
$(shell find $(INCLUDE_DIR) -name '*.h' -print )
# do nothing for all
-all:
+all: docs
docs: sgml html clean-sources
@@ -66,17 +66,11 @@ templates: scan
# CFLAGS and LDFLAGS for compiling scan program.
GTKDOC_CFLAGS = \
- @CFLAGS@ \
- @GLIB_CFLAGS@ \
- @LIBXML_CFLAGS@ \
- @XMLSEC1_CFLAGS@ \
+ $(LASSO_CFLAGS) \
-I$(top_srcdir)
-GTKDOC_LIBS = \
- @LIBS@ \
- @GLIB_LIBS@ -lgobject-2.0 \
- @LIBXML_LIBS@ \
- @XMLSEC1_LIBS@ \
+GTKDOC_LIBS = \
+ $(LASSO_LIBS) \
-L$(top_srcdir)/lasso -llasso
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)