From 10948ed35a04d6cbe05819acf9903e5e7395375b Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 2 Apr 2024 13:44:56 +0200 Subject: feat(treewide): Also remove hard-coded values in the `templates/` dir --- templates/c/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'templates/c/makefile') diff --git a/templates/c/makefile b/templates/c/makefile index e5577c4..63ca24c 100644 --- a/templates/c/makefile +++ b/templates/c/makefile @@ -2,7 +2,10 @@ PREFIX := /usr/local BINPREFIX := $(DESTDIR)$(PREFIX)/bin MANPREFIX := $(DESTDIR)$(PREFIX)/share/man/man1 -BIN_NAME := TODO +BIN_NAME := %INIT_APPLICATION_NAME +# This version is set automatically on `cog bump --auto`; +BIN_VERSION := "v%INIT_APPLICATION_VERSION" # GUIDING VERSION STRING + # The trailing slash is important BUILD_DIR := ./target/ BIN_PATH := $(BUILD_DIR)$(BIN_NAME) -- cgit 1.4.1