Put version in zip file name
This commit is contained in:
parent
d1dc30a2b6
commit
e77096c9b7
1 changed files with 5 additions and 5 deletions
10
Makefile
10
Makefile
|
|
@ -1,8 +1,8 @@
|
||||||
CC ?= gcc
|
CC ?= gcc
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
VERSION = $(shell git describe --always)
|
VERSION = $(shell git describe --always | tail -c +2)
|
||||||
LIBS = -lpcap
|
LIBS = -lpcap
|
||||||
CFLAGS += -Wall -g -DNMRPFLASH_VERSION=\"$(VERSION)\"
|
CFLAGS += -Wall -g -DNMRPFLASH_VERSION=\"v$(VERSION)\"
|
||||||
LDFLAGS += $(LIBS)
|
LDFLAGS += $(LIBS)
|
||||||
|
|
||||||
.PHONY: clean install release release/osx release/linux release/win32
|
.PHONY: clean install release release/osx release/linux release/win32
|
||||||
|
|
@ -30,13 +30,13 @@ install: nmrpflash
|
||||||
|
|
||||||
release/osx:
|
release/osx:
|
||||||
CFLAGS="-arch i386 -arch x86_64 -mmacosx-version-min=10.6" make release
|
CFLAGS="-arch i386 -arch x86_64 -mmacosx-version-min=10.6" make release
|
||||||
zip nmrpflash-osx.zip nmrpflash
|
zip nmrpflash-$(VERSION)-osx.zip nmrpflash
|
||||||
|
|
||||||
release/linux: release
|
release/linux: release
|
||||||
zip nmrpflash-linux.zip nmrpflash
|
zip nmrpflash-$(VERSION)-linux.zip nmrpflash
|
||||||
|
|
||||||
release/win32:
|
release/win32:
|
||||||
zip nmrpflash-win32.zip nmrpflash.exe
|
zip nmrpflash-$(VERSION)-win32.zip nmrpflash.exe
|
||||||
|
|
||||||
release: clean nmrpflash
|
release: clean nmrpflash
|
||||||
strip nmrpflash
|
strip nmrpflash
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue