# 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 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;