xref: /linux/tools/testing/selftests/powerpc/flags.mk (revision e3b2949e3fa2fd8c19cd5fbb0424d38f70a70e9c)
1#This checks for any ENV variables and add those.
2
3ifeq ($(GIT_VERSION),)
4GIT_VERSION := $(shell git describe --always --long --dirty || echo "unknown")
5export GIT_VERSION
6endif
7
8CFLAGS := -std=gnu99 -O2 -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(selfdir)/powerpc/include $(USERCFLAGS)
9export CFLAGS
10