mirror of
https://github.com/pbatard/rufus.git
synced 2025-06-02 07:39:54 -04:00
[mingw] added --with-freedos to configure
* default is enabled (=> add --without-freedos to disable) * also update the release process as a result * also update version to rufus next * also fixed FreeDOS embedded files lost when RC is edited in Visual Studio
This commit is contained in:
parent
3187f71933
commit
55e6cd8023
9 changed files with 115 additions and 204 deletions
13
Makefile.am
13
Makefile.am
|
@ -4,11 +4,12 @@ TARGET = rufus
|
|||
# This step produces the UPX compressed and signed releases that are made available for public download
|
||||
release: all
|
||||
@mv src/$(TARGET)$(EXEEXT) .
|
||||
@mv src/$(TARGET)_fd$(EXEEXT) .
|
||||
@$(STRIP) $(TARGET)$(EXEEXT)
|
||||
@$(STRIP) $(TARGET)_fd$(EXEEXT)
|
||||
@upx $(TARGET)$(EXEEXT)
|
||||
@upx $(TARGET)_fd$(EXEEXT)
|
||||
@cmd.exe /k _sign.cmd $(TARGET)$(EXEEXT) $(TARGET)_fd$(EXEEXT)
|
||||
@mv $(TARGET)$(EXEEXT) $(TARGET)_v$(VERSION)$(EXEEXT)
|
||||
@mv $(TARGET)_fd$(EXEEXT) $(TARGET)_v$(VERSION)f$(EXEEXT)
|
||||
@mv $(TARGET)$(EXEEXT) $(TARGET)_v$(VERSION)$(EXESUFFIX)$(EXEEXT)
|
||||
# Don't want to enter a password twice => only sign when we have both release files
|
||||
@if [ -f $(TARGET)_v$(VERSION)f$(EXEEXT) ]; then \
|
||||
if [ -f $(TARGET)_v$(VERSION)$(EXEEXT) ]; then \
|
||||
cmd.exe /k _sign.cmd $(TARGET)_v$(VERSION)$(EXEEXT) $(TARGET)_v$(VERSION)f$(EXEEXT); \
|
||||
fi; \
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue