mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
51fb4e339f
* also bump version to rufus-next * also change build prefix from '#' to 'b' in tags
10 lines
342 B
Makefile
10 lines
342 B
Makefile
SUBDIRS = src
|
|
TARGET = rufus
|
|
|
|
# This step produces the UPX compressed and signed releases that are made available for public download
|
|
release: all
|
|
@mv src/$(TARGET)$(EXEEXT) .
|
|
@$(STRIP) $(TARGET)$(EXEEXT)
|
|
@upx $(TARGET)$(EXEEXT)
|
|
@mv $(TARGET)$(EXEEXT) $(TARGET)_v$(VERSION)$(EXEEXT)
|
|
@cmd.exe /k _sign.cmd $(TARGET)_v$(VERSION)$(EXEEXT)
|