Fix broken VPATH/parallel builds

Signed-off-by: Philip Kovacs <phil@philkovacs.com>
This commit is contained in:
Philip Kovacs 2011-11-21 08:10:03 +01:00 committed by Martin Sustrik
parent 5c1a91e33e
commit bf9062902c
3 changed files with 9 additions and 6 deletions

View File

@ -29,11 +29,11 @@ if BUILD_DOC
SUFFIXES=.html .txt .xml .3 .7
.txt.html:
asciidoc -d manpage -b xhtml11 -f asciidoc.conf \
-azmq_version=@PACKAGE_VERSION@ $<
asciidoc -d manpage -b xhtml11 -f $(srcdir)/asciidoc.conf \
-azmq_version=@PACKAGE_VERSION@ -o$@ $<
.txt.xml:
asciidoc -d manpage -b docbook -f asciidoc.conf \
-azmq_version=@PACKAGE_VERSION@ $<
asciidoc -d manpage -b docbook -f $(srcdir)/asciidoc.conf \
-azmq_version=@PACKAGE_VERSION@ -o$@ $<
.xml.1:
xmlto man $<
.xml.3:

View File

@ -1,4 +1,5 @@
INCLUDES = -I$(top_builddir)/include
INCLUDES = -I$(top_builddir)/include \
-I$(top_srcdir)/include
noinst_PROGRAMS = local_lat remote_lat local_thr remote_thr inproc_lat inproc_thr

View File

@ -1,4 +1,6 @@
INCLUDES = -I$(top_builddir)/include
INCLUDES = -I$(top_builddir)/include \
-I$(top_srcdir)/include
LDADD = $(top_builddir)/src/libzmq.la
noinst_PROGRAMS = test_pair_inproc \