search for: dist_doc_data

Displaying 8 results from an estimated 8 matches for "dist_doc_data".

2010 Aug 23
4
building on RHEL 5/CentOS 5
RHEL5 has autoconf 2.59 and automake 1.9.6. I've managed to build the whole Xapian family by reducing the requirement to 2.59/1.9.6 in configure.ac. Omega requires docdir which can be added by hand in docs/Makefile.am: docdir = ${datadir}/doc/${PACKAGE} if !MAINTAINER_NO_DOCS dist_doc_DATA = $(RSTHTML) endif All I've done is get these packages compiled - I haven't tested in any serious way. All the best, Tim.
2012 Sep 25
2
[libopusfile PATCH] build: implement autotools build system for libopusfile.
...xamples/opusfile_example +examples/seeking_example +install-sh +libopusfile-*.tar.* +libtool +ltmain.sh +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..098a63d --- /dev/null +++ b/Makefile.am @@ -0,0 +1,22 @@ +AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS) + +dist_doc_DATA = COPYING AUTHORS README.txt + +include_HEADERS = include/opusfile.h + +lib_LTLIBRARIES = libopusfile.la +libopusfile_la_SOURCES = \ + src/http.c src/info.c \ + src/internal.c src/internal.h \ + src/opusfile.c src/stream.c +libopusfile_la_LIBADD = $(DEPS_LIBS) + +EXTRA_PROGRAMS = examples/opusfile_...
2016 Sep 26
3
[PATCH 1/3] build: remove extra libconfig linkage
...irt_format_LDADD = \ - $(LIBCONFIG_LIBS) \ $(top_builddir)/src/libutils.la \ $(top_builddir)/src/libguestfs.la \ $(LIBXML2_LIBS) \ diff --git a/inspector/Makefile.am b/inspector/Makefile.am index 760e810..a872f4b 100644 --- a/inspector/Makefile.am +++ b/inspector/Makefile.am @@ -53,7 +53,6 @@ dist_doc_DATA = \ bin_PROGRAMS = virt-inspector SHARED_SOURCE_FILES = \ - ../fish/config.c \ ../fish/decrypt.c \ ../fish/display-options.h \ ../fish/display-options.c \ @@ -79,11 +78,9 @@ virt_inspector_CPPFLAGS = \ virt_inspector_CFLAGS = \ $(WARN_CFLAGS) $(WERROR_CFLAGS) \ - $(LIBXML2_CFLAGS) \...
2016 Sep 26
0
[PATCH 3/3] tools: build common fish sources in a static library
...$(top_builddir)/src/libguestfs.la \ + $(top_builddir)/fish/libfishcommon.la \ $(LIBXML2_LIBS) \ $(LIBVIRT_LIBS) \ $(LTLIBINTL) \ diff --git a/inspector/Makefile.am b/inspector/Makefile.am index fe7bdab..275bc7c 100644 --- a/inspector/Makefile.am +++ b/inspector/Makefile.am @@ -52,20 +52,7 @@ dist_doc_DATA = \ bin_PROGRAMS = virt-inspector -SHARED_SOURCE_FILES = \ - ../fish/decrypt.c \ - ../fish/display-options.h \ - ../fish/display-options.c \ - ../fish/domain.c \ - ../fish/inspect.c \ - ../fish/keys.c \ - ../fish/options.h \ - ../fish/options.c \ - ../fish/uri.h \ - ../fish/uri.c - virt_inspe...
2012 Sep 25
0
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v3)
...btool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6c05491 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS) + +dist_doc_DATA = COPYING AUTHORS README.txt + +include_HEADERS = include/opusfile.h + +lib_LTLIBRARIES = libopusfile.la +libopusfile_la_SOURCES = \ + src/http.c src/info.c \ + src/internal.c src/internal.h \ + src/opusfile.c src/stream.c +libopusfile_la_LIBADD = $(DEPS_LIBS) + +EXTRA_PROGRAMS = examples/opusfile_...
2012 Sep 25
3
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v2)
...btool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..6c05491 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,24 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS) + +dist_doc_DATA = COPYING AUTHORS README.txt + +include_HEADERS = include/opusfile.h + +lib_LTLIBRARIES = libopusfile.la +libopusfile_la_SOURCES = \ + src/http.c src/info.c \ + src/internal.c src/internal.h \ + src/opusfile.c src/stream.c +libopusfile_la_LIBADD = $(DEPS_LIBS) + +EXTRA_PROGRAMS = examples/opusfile_...
2012 Sep 29
2
[libopusfile PATCH] build: implement autotools build system for libopusfile. (v4)
...btool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 +missing diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..d9f491e --- /dev/null +++ b/Makefile.am @@ -0,0 +1,51 @@ +ACLOCAL_AMFLAGS = -I m4 + +AM_CFLAGS = -I$(top_srcdir)/include $(DEPS_CFLAGS) + +dist_doc_DATA = COPYING AUTHORS README.txt + +include_HEADERS = include/opusfile.h + +lib_LTLIBRARIES = libopusfile.la +libopusfile_la_SOURCES = \ + src/http.c src/info.c \ + src/internal.c src/internal.h \ + src/opusfile.c src/stream.c +libopusfile_la_LIBADD = $(DEPS_LIBS) +libopusfile_la_LDFLAGS = -no-undefine...
2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
...a/inspector/Makefile.am b/inspector/Makefile.am index af596bf..00ca5d5 100644 --- a/inspector/Makefile.am +++ b/inspector/Makefile.am @@ -45,10 +45,6 @@ EXTRA_DIST = \ test-xmllint.sh.in \ virt-inspector.pod -CLEANFILES = \ - stamp-virt-inspector.pod \ - virt-inspector.1 - docdir = @docdir@ dist_doc_DATA = \ virt-inspector.rng \ diff --git a/java/Makefile.am b/java/Makefile.am index c7db29d..83c4a30 100644 --- a/java/Makefile.am +++ b/java/Makefile.am @@ -56,8 +56,7 @@ EXTRA_DIST = \ run-java-tests \ Makefile.inc -CLEANFILES = \ - bindtests.tmp \ +CLEANFILES += \ com/redhat/et/libguestfs/...