From 928b00749d9d445975487d3c7353a2357905b48a Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 16 Nov 2015 17:18:01 +0000 Subject: [PATCH] Use current date (yymmdd) as revision number. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 7962925..6eb0bee 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ PROG = tbftss VERSION = 0.3 -REVISION := $(shell git rev-list --count HEAD) +REVISION = $(shell date +"%y%m%d") DEBUG = 0 CXXFLAGS += `sdl2-config --cflags` -DVERSION=$(VERSION) -DREVISION=$(REVISION) -DUNIX=1 -DDEBUG=$(DEBUG)