about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorArun Isaac2026-04-12 22:51:21 +0100
committerArun Isaac2026-04-13 11:32:07 +0100
commitc72e471908b560443a59499f0435243b80c78bf3 (patch)
treee5c77fc668b01c2ae2148c45fc067902c82060ed /Makefile
parentaa62f27b88d7cd018d7339b3b85d89cc8a7dcaaa (diff)
downloadkaagum-c72e471908b560443a59499f0435243b80c78bf3.tar.gz
kaagum-c72e471908b560443a59499f0435243b80c78bf3.tar.lz
kaagum-c72e471908b560443a59499f0435243b80c78bf3.zip
Add project title to config.scm.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 777b274..53ba359 100644
--- a/Makefile
+++ b/Makefile
@@ -17,6 +17,7 @@
 # along with kaagum.  If not, see <https://www.gnu.org/licenses/>.
 
 project = kaagum
+project_title = Kaagum
 version = 0.1.0
 
 GIT = git
@@ -56,7 +57,7 @@ godir = $(libdir)/guile/$(guile_effective_version)/site-ccache
 all: $(objects) $(config_file)
 
 %.scm: %.scm.in
-	$(SED) -e 's|@PROJECT@|$(project)|' -e 's|@VERSION@|$(version)|' $< > $@
+	$(SED) -e 's|@PROJECT@|$(project)|' -e 's|@PROJECT_TITLE@|$(project_title)|' -e 's|@VERSION@|$(version)|' $< > $@
 
 %.go: %.scm $(config_file)
 	GUILE_AUTO_COMPILE=0 $(GUILD) compile -L . -o $@ $<