Refactor Makefile by removing unnecessary comments and default target

This commit is contained in:
2025-12-10 20:55:33 +01:00
parent d8c4ad29d4
commit 2f828840dc

View File

@@ -1,10 +1,7 @@
# Makefile for building testver
# Get version from git tags
VERSION := $(shell git describe --tags --always 2>/dev/null)
# Default target
.PHONY: testver clean
.PHONY: clean
testver:
ifneq ($(VERSION),)
@@ -17,5 +14,3 @@ endif
clean:
rm -f testver
.DEFAULT_GOAL := testver