mirror of https://codeberg.org/cage/tinmop/
69 lines
2.7 KiB
Makefile
69 lines
2.7 KiB
Makefile
# tinmop: an humble mastodon client
|
|
# Copyright (C) 2020 cage
|
|
|
|
# This program 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.
|
|
|
|
# This program 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 this program.
|
|
# If not, see [[http://www.gnu.org/licenses/][http://www.gnu.org/licenses/]].
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
bin_SCRIPTS = tinmop
|
|
|
|
CLEANFILES = $(bin_SCRIPTS) $(CONF_PATH_FILE);
|
|
|
|
CONF_PATH_FILE = src/config.lisp
|
|
|
|
CONF_PATH_FILE_IN = src/config.lisp.in
|
|
|
|
BUILT_SOURCES = $(CONF_PATH_FILE)
|
|
|
|
EXTRA_DIST = config.rpath m4/ChangeLog tinmop.asd README.org src LICENSES.org COPYING \
|
|
etc/shared.conf etc/default-theme.conf etc/init.lisp
|
|
|
|
SUBDIRS = po
|
|
|
|
dist_doc_DATA = README.org README.txt LICENSES.org CONTRIBUTING.org doc/man.org doc/send-toot.lisp
|
|
|
|
nobase_dist_sysconf_DATA = etc/shared.conf etc/init.lisp etc/default-theme.conf
|
|
|
|
dist_man1_MANS = doc/tinmop.man
|
|
|
|
$(PACKAGE): $(CONF_PATH_FILE)
|
|
$(LISP_COMPILER) \
|
|
--eval "(asdf:load-system '$(PACKAGE))" \
|
|
--eval "(in-package main)" \
|
|
--eval "(sb-ext:save-lisp-and-die \"$(PACKAGE)\" :toplevel 'main::main :executable t :purify t :save-runtime-options t)"
|
|
|
|
$(CONF_PATH_FILE):
|
|
grep "^;" $(CONF_PATH_FILE_IN) > $(CONF_PATH_FILE)
|
|
echo -e "(in-package :config)\n" >> $(CONF_PATH_FILE);
|
|
echo "(alexandria:define-constant +sys-data-dir+" >> $(CONF_PATH_FILE);
|
|
echo -e "\""$(pkgdatadir)"/data/\" :test #'string=)\n" >> $(CONF_PATH_FILE);
|
|
|
|
echo "(alexandria:define-constant +sys-conf-dir+" >> $(CONF_PATH_FILE);
|
|
echo -e "\"$(sysconfdir)\" :test #'string=)\n" >> $(CONF_PATH_FILE);
|
|
|
|
echo "(alexandria:define-constant +catalog-dir+" >> $(CONF_PATH_FILE);
|
|
echo -e "\""$(localedir)"\" :test #'string=)\n" >> $(CONF_PATH_FILE);
|
|
|
|
echo "(alexandria:define-constant +text-domain+" >> $(CONF_PATH_FILE);
|
|
echo -e "\""$(PACKAGE)"\" :test #'string=)\n" >> $(CONF_PATH_FILE);
|
|
|
|
echo "(alexandria:define-constant +program-name+" >> $(CONF_PATH_FILE);
|
|
echo -e "\""$(PACKAGE)"\" :test #'string=)\n" >> $(CONF_PATH_FILE);
|
|
|
|
echo "(alexandria:define-constant +program-version+" >> $(CONF_PATH_FILE);
|
|
echo -e "\""$(VERSION)"\" :test #'string=)\n" >> $(CONF_PATH_FILE);
|
|
|
|
cat $(CONF_PATH_FILE).in | sed "\/^;;.*$\/d" >> $(CONF_PATH_FILE);
|