1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-30 22:43:14 +03:00

took me nearly 2 years to find the way to not build in SUBDIRS before

the current dir. Did I said previously how I hate auto* (but still love
it when it works :-)
Daniel
This commit is contained in:
Daniel Veillard
2001-01-22 22:45:10 +00:00
parent 82687162b1
commit b83ba408b1
3 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,9 @@
Mon Jan 22 23:42:17 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* Makefile.am example/Makefile.am: finally found the trick
to build the example, i.e. add "." in SUBDIRS before example
in the list <grin/>
Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr> Mon Jan 22 16:30:37 CET 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xml.html: updated with an XSLT section, removed pointer to * doc/xml.html: updated with an XSLT section, removed pointer to

View File

@ -1,6 +1,6 @@
## Process this file with automake to produce Makefile.in ## 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@ INCLUDES = -I@srcdir@/include -I./include @Z_CFLAGS@ @CORBA_CFLAGS@

View File

@ -6,9 +6,3 @@ INCLUDES = \
LDADD = $(top_builddir)/libxml.la @Z_LIBS@ 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))