From 27c8de16b55dfe70180f0e17e12f442696708a53 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Thu, 13 Apr 2023 09:56:34 +0100 Subject: Initial commit --- Makefile.am | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..bcbec65 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,38 @@ +# bffe +# +# Copyright © 2023 Christopher Baines +# +# 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 +# . + +include guile.am + +bin_SCRIPTS = \ + scripts/bffe + +moddir = $(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION) +godir = $(prefix)/lib/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache +assetsdir = $(datadir)/@PACKAGE@ + +SOURCES = \ + bffe/server.scm \ + bffe/view/util.scm \ + bffe/view/home.scm \ + bffe/view/activity.scm + +install-data-local: + mkdir -p "$(DESTDIR)$(pkgdatadir)" || exit 1; + cp -r assets "$(DESTDIR)$(pkgdatadir)/" || exit 1; -- cgit v1.2.3