1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

[freedos] separate non FreeDOS and FreeDOS builds into rufus and rufus_fd

This commit is contained in:
Pete Batard 2011-12-15 15:53:33 +00:00
parent f72b298c03
commit 849f61a80f
13 changed files with 602 additions and 35 deletions

View file

@ -441,12 +441,15 @@ uninstall-am:
tags-recursive uninstall uninstall-am
# This step produces the UPX compressed and signed release that is made available for public download
# 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)
@cmd.exe /k _sign.cmd $(TARGET)$(EXEEXT)
@upx $(TARGET)_fd$(EXEEXT)
@cmd.exe /k _sign.cmd $(TARGET)$(EXEEXT) $(TARGET)_fd$(EXEEXT)
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.