mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
9 lines
273 B
Makefile
9 lines
273 B
Makefile
SUBDIRS = src
|
|
TARGET = rufus
|
|
|
|
# This step produces the UPX compressed and signed release that is made available for public download
|
|
release: all
|
|
@mv src/$(TARGET)$(EXEEXT) .
|
|
@$(STRIP) $(TARGET)$(EXEEXT)
|
|
@upx $(TARGET)$(EXEEXT)
|
|
@cmd.exe /k _sign.bat $(TARGET)$(EXEEXT)
|