Only evaluate the $(shell) expansions once in Makefiles
This commit is contained in:
parent
c04f990320
commit
da9de671ba
|
@ -1,8 +1,8 @@
|
||||||
UNAME=$(shell uname)
|
UNAME=$(shell uname)
|
||||||
DEBUG=1
|
DEBUG=1
|
||||||
INSTALL=install
|
INSTALL=install
|
||||||
GIT_VERSION=$(shell git describe --tags --always)
|
GIT_VERSION:=$(shell git describe --tags --always)
|
||||||
VERSION=$(shell git describe --tags --abbrev=0)
|
VERSION:=$(shell git describe --tags --abbrev=0)
|
||||||
|
|
||||||
CFLAGS += -std=c99
|
CFLAGS += -std=c99
|
||||||
CFLAGS += -pipe
|
CFLAGS += -pipe
|
||||||
|
|
Loading…
Reference in New Issue