miniupnp/miniupnpd/gitrev.mk

10 lines
295 B
Makefile
Raw Normal View History

2020-04-28 23:49:06 +00:00
# (c) 2019-2020 Thomas Bernard
# For GNU Make
ISGITREPO := $(shell git rev-parse --is-inside-work-tree)
ifeq ($(ISGITREPO),true)
GITREF := $(shell git rev-parse --short HEAD)
GITBRANCH := $(shell git rev-parse --abbrev-ref HEAD)
2020-04-28 23:49:06 +00:00
CPPFLAGS += -DMINIUPNPD_GIT_REF=\"$(GITBRANCH)-$(GITREF)\"
endif