diff --git a/ChangeLog b/ChangeLog index 074f4a6c..b2f0b61b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Jan 22 23:42:17 CET 2001 Daniel Veillard + + * Makefile.am example/Makefile.am: finally found the trick + to build the example, i.e. add "." in SUBDIRS before example + in the list + Mon Jan 22 16:30:37 CET 2001 Daniel Veillard * doc/xml.html: updated with an XSLT section, removed pointer to diff --git a/Makefile.am b/Makefile.am index c9833c6c..55ce4012 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -SUBDIRS = include doc +SUBDIRS = . include doc example INCLUDES = -I@srcdir@/include -I./include @Z_CFLAGS@ @CORBA_CFLAGS@ diff --git a/example/Makefile.am b/example/Makefile.am index ce7a8da9..45429f39 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -6,9 +6,3 @@ INCLUDES = \ LDADD = $(top_builddir)/libxml.la @Z_LIBS@ -$(srcdir)/libxml: - -$(RM) $(srcdir)/libxml - ln -s $(srcdir)/. $(srcdir)/libxml - -$(top_builddir)/libxml.la: $(srcdir)/libxml - (cd .. ; $(MAKE))