add get-version

git-svn-id: file:///raid/svn-personal/tewi/trunk@53 8739d7e6-ffea-ec47-b151-bdff447c6205
This commit is contained in:
Nishi 2024-09-18 11:29:31 +00:00
parent 409c5f010f
commit 7593e59074

View File

@ -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