Only set VERSION to git-describe if .git is available
authorJonas Fonseca <fonseca@diku.dk>
Tue, 16 May 2006 15:32:24 +0000 (17:32 +0200)
committerJonas Fonseca <fonseca@antimatter.localdomain>
Tue, 16 May 2006 15:32:24 +0000 (17:32 +0200)
Makefile

index c3e2a11..4d417c5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,13 @@
 PREFIX = $(HOME)
 LDFLAGS = -lcurses
-CFLAGS = '-DVERSION="$(VERSION)"' -Wall
+CFLAGS = -Wall
 DFLAGS = -g -DDEBUG
 PROGS  = tig
 DOCS   = tig.1.txt tig.1.html tig.1 README.html
-VERSION        = $(shell git-describe)
+
+ifneq (,$(wildcard .git))
+CFLAGS += '-DVERSION="$(shell git-describe)"'
+endif
 
 all: $(PROGS)
 all-debug: $(PROGS)