mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
5004374277
* Also update Bled to latest, as well as build scripts * Note: Considering that Visual Studio 2015 is both freely and legally available for anyone who wants to use it to compile Rufus, starting with this commit, I will NOT be supporting any other version of Visual Studio but 2015.
12 lines
462 B
Makefile
12 lines
462 B
Makefile
SUBDIRS = src
|
|
TARGET = rufus
|
|
|
|
# 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 $(TARGET)$(EXEEXT)
|
|
@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|
|
@cmd.exe //c _sign.cmd $(TARGET)-$(VERSION)$(SUFFIX)$(EXEEXT)
|