1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-02 17:02:30 +00:00
rufus/Makefile.am
Pete Batard 2577337dec [misc] right-to-left and version handling improvements
* Improve right-to-left consistency and handling
* Drop 'v' from version indicators
* Also update version to 1.4.4
* Also fix French translation typos
2014-01-24 20:02:52 +00:00

12 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)