mirror of
https://github.com/status-im/miniupnp.git
synced 2025-01-10 06:06:03 +00:00
10 lines
295 B
Makefile
10 lines
295 B
Makefile
# (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)
|
|
CPPFLAGS += -DMINIUPNPD_GIT_REF=\"$(GITBRANCH)-$(GITREF)\"
|
|
endif
|