root/swish-e/branches/2.6/Makefile.am

Revision 1990, 2.4 kB (checked in by augur, 1 year ago)

Removed worddata.c and worddata.h from "make dist" as they no longer exist.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 AUTOMAKE_OPTIONS = foreign
2 SUBDIRS = filters prog-bin conf filter-bin example html man src tests pod
3 ACLOCAL_AMFLAGS = -I config
4
5
6 docdir = $(datadir)/doc/$(PACKAGE)
7
8
9 # Install these three in the doc directory
10 # INSTALL and README are built at make time from .pod source
11
12 doc_DATA = \
13     $(srcdir)/INSTALL \
14     $(srcdir)/README \
15     README.cvs
16
17 # These create REAME and INSTALL in the top level *source*
18 # directory for the distribution.  Created at "make" time.
19
20 $(srcdir)/INSTALL: $(top_srcdir)/pod/INSTALL.pod
21         -rm -f $(top_srcdir)/INSTALL
22         -pod2text $(top_srcdir)/pod/INSTALL.pod > $(top_srcdir)/INSTALL
23
24 $(srcdir)/README: $(top_srcdir)/pod/README.pod
25         -rm -f $(top_srcdir)/README
26         -pod2text $(top_srcdir)/pod/README.pod > $(top_srcdir)/README
27
28 config_dir  = \
29      config/config.guess \
30      config/config.sub \
31      config/install-sh \
32      config/ltmain.sh \
33      config/missing \
34      config/mkinstalldirs
35
36
37
38 perl_dir = \
39     perl/Changes \
40     perl/MANIFEST \
41     perl/README \
42     perl/Makefile.PL \
43     perl/Makefile.mingw \
44     perl/API.pm \
45     perl/API.xs \
46     perl/typemap \
47     perl/t/test.t \
48     perl/t/dummy.t \
49     perl/t/test.conf \
50     perl/t/first.html \
51     perl/t/second.html \
52     perl/t/third.html
53
54 vms_dir = \
55     src/vms/acconfig.h_vms \
56     src/vms/build_swish-e.com \
57     src/vms/config.h \
58     src/vms/descrip_axp.mms \
59     src/vms/descrip_libxml2.mms \
60     src/vms/descrip_vax.mms \
61     src/vms/libtest.opt \
62     src/vms/readme_vms.txt \
63     src/vms/regex.c \
64     src/vms/regex.h \
65     src/vms/regexpr.h \
66     src/vms/swish.opt
67
68
69 win32_dir = \
70     src/win32/acconfig.h \
71     src/win32/dirent.c \
72     src/win32/dirent.h \
73     src/win32/libswishe.dsp \
74     src/win32/libswishindex.dsp \
75     src/win32/swishe.dsp \
76     src/win32/swishe.dsw \
77     src/win32/release.nsi \
78     src/win32/filebase.nsh \
79     src/win32/fixperl.pl \
80     src/win32/build-perl.bat \
81     src/win32/build.sh \
82     src/win32/dist.sh
83
84 rpm_dir = \
85     rpm/swish-e.spec.in \
86     rpm/swish-e.xpm
87
88
89 debian_dir = \
90     debian/README.Debian \
91     debian/changelog \
92     debian/compat \
93     debian/control \
94     debian/copyright \
95     debian/files \
96     debian/rules \
97     debian/swish-e.doc-base \
98     debian/swish-e.substvars
99
100 bin_SCRIPTS = swish-config
101 pkgconfigdir = $(libdir)/pkgconfig
102 pkgconfig_DATA = swish-e.pc
103
104 EXTRA_DIST = \
105     $(config_dir) $(perl_dir) \
106     $(vms_dir) $(win32_dir) $(rpm_dir)  \
107     $(doc_DATA) swish-config.in swish-e.pc.in\
108     $(debian_dir)
109
110
111 .PHONEY: test
112
113 test: check
114
Note: See TracBrowser for help on using the browser.