X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/b5eeff5aca19d4ddcaa4a1cdd427e9eb7d86c6a4..e2beda1801cd1be8aa8588b168750b7d85e8c87f:/Makefile diff --git a/Makefile b/Makefile index c3e2a11..4d417c5 100644 --- 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)