1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
AUTOMAKE_OPTIONS = foreign
SUBDIRS = filters prog-bin conf filter-bin example html man src tests
if BUILDDOCS
docdir = $(datadir)/doc/$(PACKAGE)
doc_DATA = \
$(srcdir)/INSTALL \
$(srcdir)/README \
README.cvs
$(srcdir)/INSTALL: $(top_srcdir)/pod/INSTALL.pod
-rm -f $(top_srcdir)/INSTALL
-pod2text $(top_srcdir)/pod/INSTALL.pod > $(top_srcdir)/INSTALL
$(srcdir)/README: $(top_srcdir)/pod/README.pod
-rm -f $(top_srcdir)/README
-pod2text $(top_srcdir)/pod/README.pod > $(top_srcdir)/README
endif
config_dir = \
config/config.guess \
config/config.sub \
config/install-sh \
config/ltmain.sh \
config/missing \
config/mkinstalldirs
doc_dir = \
doc/Makefile.in \
doc/Pod/HtmlPsPdf.pm \
doc/Pod/HtmlPsPdf/Book.pm \
doc/Pod/HtmlPsPdf/Chapter.pm \
doc/Pod/HtmlPsPdf/Common.pm \
doc/Pod/HtmlPsPdf/Config.pm \
doc/Pod/HtmlPsPdf/Html.pm \
doc/Pod/HtmlPsPdf/RunTime.pm \
doc/Version.pm \
doc/bin/build \
doc/bin/html2ps \
doc/bin/pod2hpp \
doc/conf/html2ps-global.conf \
doc/conf/html2ps-slides.conf \
doc/conf/html2ps.conf \
doc/conf/html2ps.html \
doc/conf/hyphen.tex \
doc/split.conf \
doc/swish.conf \
doc/tmpl/index.tmpl \
doc/tmpl/indexps.tmpl \
doc/tmpl/page.tmpl \
doc/tmpl/pageps.tmpl \
doc/tmpl/splitpage.tmpl
perl_dir = \
perl/Changes \
perl/MANIFEST \
perl/README \
perl/Makefile.PL \
perl/API.pm \
perl/API.xs \
perl/typemap \
perl/t/test.t \
perl/t/dummy.t \
perl/t/test.conf \
perl/t/first.html \
perl/t/second.html \
perl/t/third.html
pod_dir = \
pod/.htaccess \
pod/swish-e.pod \
pod/CHANGES.pod \
pod/INSTALL.pod \
pod/README.pod \
pod/SWISH-3.0.pod \
pod/SWISH-BUGS.pod \
pod/SWISH-CONFIG.pod \
pod/SWISH-FAQ.pod \
pod/SWISH-LIBRARY.pod \
pod/SWISH-RUN.pod \
pod/SWISH-SEARCH.pod \
pod/images/dotrule1.gif \
pod/images/swish.gif \
pod/images/swish2.gif \
pod/images/swish2b.gif \
pod/images/swishbanner1.gif \
pod/search.cgi \
pod/style.css
vms_dir = \
src/vms/acconfig.h_vms \
src/vms/build_swish-e.com \
src/vms/config.h \
src/vms/descrip_axp.mms \
src/vms/descrip_libxml2.mms \
src/vms/descrip_vax.mms \
src/vms/libtest.opt \
src/vms/readme_vms.txt \
src/vms/regex.c \
src/vms/regex.h \
src/vms/regexpr.h \
src/vms/swish.opt
win32_dir = \
src/win32/acconfig.h \
src/win32/dirent.c \
src/win32/dirent.h \
src/win32/libswishe.dsp \
src/win32/libswishindex.dsp \
src/win32/swishe.dsp \
src/win32/swishe.dsw \
src/win32/installer.nsi \
src/win32/release.nsi \
src/win32/filebase.nsh \
src/win32/fixperl.pl \
src/win32/build-perl.bat \
src/win32/build.sh \
src/win32/dist.sh \
src/worddata.c \
src/worddata.h
rpm_dir = \
rpm/swish-e.spec.in \
rpm/swish-e.xpm
debian_dir = \
debian/README.Debian \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/files \
debian/rules \
debian/swish-e.doc-base \
debian/swish-e.substvars
bin_SCRIPTS = swish-config
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = swish-e.pc
EXTRA_DIST = \
$(config_dir) $(doc_dir) $(perl_dir) \
$(pod_dir) $(vms_dir) $(win32_dir) $(rpm_dir) \
$(doc_DATA) swish-config.in swish-e.pc.in\
$(debian_dir)
.PHONEY: test
test: check
|