mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
ff37b4e6df
* Also, all things considered I'm gonna use a dash for the version separator
11 lines
433 B
Makefile
11 lines
433 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) .
|
|
@$(STRIP) $(TARGET)$(EXEEXT)
|
|
@upx --lzma $(TARGET)$(EXEEXT)
|
|
@mv $(TARGET)$(EXEEXT) $(TARGET)-$(VERSION)$(EXEEXT)
|
|
@cmd.exe /k _sign.cmd $(TARGET)-$(VERSION)$(EXEEXT)
|