From 7593e59074fcabfa38f89899bbc16ee5e3dc754d Mon Sep 17 00:00:00 2001 From: Nishi Date: Wed, 18 Sep 2024 11:29:31 +0000 Subject: [PATCH] add get-version git-svn-id: file:///raid/svn-personal/tewi/trunk@53 8739d7e6-ffea-ec47-b151-bdff447c6205 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d8d3767..931106a 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ include Platform/$(PLATFORM).mk FLAGS = PWD=$(PWD) PLATFORM=$(PLATFORM) PREFIX=$(PREFIX) -.PHONY: all format clean ./Server ./Common ./Module ./Manpage +.PHONY: all format clean ./Server ./Common ./Module ./Manpage get-version all: ./Server ./Module ./Manpage @@ -30,6 +30,9 @@ all: ./Server ./Module ./Manpage format: clang-format --verbose -i `find ./Server ./Common ./Module "(" -name "*.c" -or -name "*.h" ")" -and -not -name "strptime.*"` config.h +get-version: + @grep "define TW_VERSION" Server/tw_version.h | grep -Eo '"[^\]+' | sed -E 's/^"//g' + clean: $(MAKE) -C ./Server $(FLAGS) clean $(MAKE) -C ./Module $(FLAGS) clean