mirror of
https://github.com/0intro/wmii
synced 2024-11-22 13:52:17 +03:00
10 lines
328 B
Makefile
10 lines
328 B
Makefile
VERS = hg$$(hg identify -n)
|
|
VERS = hg$$(hg log -r $$(hg id 2>/dev/null | awk -F'[+ ]' '{print $$1}') --template '{rev}' 2>/dev/null)
|
|
VERSION = $(VERS)
|
|
VERSION := $(shell echo $(VERS))
|
|
VERSION != echo $(VERS)
|
|
CONFVERSION = -hg
|
|
COPYRIGHT = ©2009 Kris Maglione
|
|
CFLAGS += '-DVERSION=\"$(VERSION)\"' '-DCOPYRIGHT=\"$(COPYRIGHT)\"'
|
|
|