summaryrefslogtreecommitdiff
path: root/project/tagver.mk
blob: 2be8a23214af4deb1e3fe78f38e392ab22fd094d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
VER_NAMESPACE	= CPARSER

VER_MAJOR	= 0
VER_MINOR	= 0
VER_PATCH	= 0


revision.tag:	$(PROJECT_DIR)/project/revision.h
		mkdir -p build
		cp $(PROJECT_DIR)/project/revision.h build
		touch revision.tag

version.tag:	revision.tag


clean-revision:
		rm -f build/revision.h
		rm -f revision.tag

clean:		clean-revision