guile-mecab/Makefile.am

Makefile.am

1
# Guile-Mecab --- GNU Guile bindings for mecab, yet another part of speech
2
# analyzer.
3
# Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
4
#
5
# This file is part of Guile-Mecab.
6
#
7
# Guile-Mecab is free software; you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License as published by
9
# the Free Software Foundation; either version 3 of the License, or
10
# (at your option) any later version.
11
#
12
# Guile-Mecab is distributed in the hope that it will be useful, but
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
# General Public License for more details.
16
#
17
# You should have received a copy of the GNU General Public License
18
# along with Guile-Mecab.  If not, see <http://www.gnu.org/licenses/>.
19
20
include guile.am
21
22
moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
23
godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
24
25
SOURCES = mecab/mecab.scm
26
NODIST_SOURCES = mecab/configuration.scm
27
28
EXTRA_DIST += \
29
	README.md \
30
	pre-inst-env.in
31