blob: 8a195d6303386aacfb4abebec3f07924eddc2c1b (
plain)
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
|
# bffe
#
# Copyright © 2023 Christopher Baines <mail@cbaines.net>
#
# This file is part of bffe.
#
# bffe 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.
#
# bffe 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 the bffe. If not, see
# <http://www.gnu.org/licenses/>.
include guile.am
moddir = $(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
godir = $(prefix)/lib/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache
assetsdir = $(datadir)/@PACKAGE@
SOURCES = \
bffe.scm \
bffe/config.scm \
bffe/server.scm \
bffe/manage-builds.scm \
bffe/view/util.scm \
bffe/view/home.scm \
bffe/view/build.scm \
bffe/view/agent.scm \
bffe/view/activity.scm
install-data-local:
mkdir -p "$(DESTDIR)$(pkgdatadir)" || exit 1;
cp -r assets "$(DESTDIR)$(pkgdatadir)/" || exit 1;
|