Only evaluate the $(shell) expansions once in Makefiles

next
Michael Stapelberg 2009-11-09 21:29:54 +01:00
parent c04f990320
commit da9de671ba
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
UNAME=$(shell uname)
DEBUG=1
INSTALL=install
GIT_VERSION=$(shell git describe --tags --always)
VERSION=$(shell git describe --tags --abbrev=0)
GIT_VERSION:=$(shell git describe --tags --always)
VERSION:=$(shell git describe --tags --abbrev=0)
CFLAGS += -std=c99
CFLAGS += -pipe