makefile: auto-detect presence of various Lua, bsd
[cgit.git] / gen-version.sh
blob3a080157cf4e871d8e4f63d01855d8eeaf36f943
1 #!/bin/sh
3 # Get version-info specified in Makefile
4 V=$1
6 # Use `git describe` to get current version if we're inside a git repo
7 if test -d .git
8 then
9 V=$(git describe --abbrev=4 HEAD 2>/dev/null)
12 new="CGIT_VERSION = $V"
13 old=$(cat VERSION 2>/dev/null)
15 # Exit if VERSION is uptodate
16 test "$old" = "$new" && exit 0
18 # Update VERSION with new version-info
19 echo "$new" > VERSION
20 cat VERSION