defs.mk: Default VERSION -> 0.1.0-0-dev #63

Merged
Jan Lindemann merged 1 commit from jan/feature/20260815-defs-mk-default-version-dev into master 2026-08-15 20:52:56 +02:00 AGit
2 changed files with 2 additions and 2 deletions

View file

@ -243,7 +243,7 @@ ifeq ($(VERSION),)
ifneq ($(wildcard $(VERSION_FILE)),) ifneq ($(wildcard $(VERSION_FILE)),)
VERSION := $(shell $(CAT) $(VERSION_FILE)) VERSION := $(shell $(CAT) $(VERSION_FILE))
else else
VERSION := $(shell echo 1.0.0-0-dev | tee $(VERSION_FILE)) VERSION := $(shell echo 0.1.0-0-dev | tee $(VERSION_FILE))
$(warning Automatically created missing $(VERSION_FILE).) $(warning Automatically created missing $(VERSION_FILE).)
endif endif
endif endif

View file

@ -35,7 +35,7 @@ cat_Makefile()
cat_VERSION() cat_VERSION()
{ {
cat <<-EOT cat <<-EOT
1.0.0-0-dev 0.1.0-0-dev
EOT EOT
} }