mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
5803d7ad8a
* Also fix MinGW warning
14 lines
631 B
Makefile
14 lines
631 B
Makefile
SUBDIRS = src
|
|
TARGET = rufus
|
|
TAGVER = $(shell git log --oneline | wc -l)
|
|
SEDCMD = s/^\([ \t]*\)Version="\([0-9]*\)\.\([0-9]*\)\.[0-9]*\.\([0-9]*\)"\(.*\)/\1Version="\2.\3.@@TAGVER@@.\4"\5/
|
|
|
|
# This step produces the UPX compressed and signed releases that are made available for public download
|
|
# NB: UPX v3.09 or later is needed for LZMA compression (http://upx.sourceforge.net/)
|
|
release: all
|
|
@mv src/$(TARGET)$(EXEEXT) .
|
|
@sleep 1
|
|
@$(STRIP) $(TARGET)$(EXEEXT)
|
|
@upx --lzma --best $(TARGET)$(EXEEXT)
|
|
@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|
|
@cmd.exe //c _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|