forked from aidalgol/cunning-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
62 lines (49 loc) · 1.54 KB
/
Makefile.am
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
## Config file for GNU Automake.
##
## Copyright (C) 2014 Artyom V. Poptsov <poptsov.artyom@gmail.com>
##
## This file is part of Cunning Bot, an IRC bot written in Guile
## Scheme.
##
## Cunning-Bot is free software: you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation, either version 3 of the
## License, or (at your option) any later version.
##
## Cunning-Bot is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Cunning-Bot. If not, see <http://www.gnu.org/licenses/>.
bin_SCRIPTS = \
tappet
SOURCES = \
bot.scm \
commands.scm \
plugins.scm \
run-cbot.scm \
log.scm
# XXX: Ship part of spells collection of Scheme libraries to simplify
# the installation.
# See <http://community.schemewiki.org/?spells>
SOURCES += \
spells/network.scm \
spells/network/compat.scm \
spells/network/utils.scm
pkgguilesitedir = $(guilesitedir)/cunning-bot
nobase_dist_pkgguilesite_DATA = $(SOURCES)
substitute = sed -e 's,[@]GUILE[@],$(GUILE),g'
EXTRA_DIST = \
tappet.in
SUFFIXES = .in
.in:
$(substitute) "$^" > "$@.tmp" && \
chmod +x "$@.tmp" && \
mv "$@.tmp" "$@"
ETAGS_ARGS = $(SOURCES)
EXTRA_DIST = TODO.org docs/plugins.org
CLEANFILES = $(bin_SCRIPTS)
SUBDIRS = plugins
## Makefile.am ends here