You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
505 B

  1. SUBDIRS = src
  2. TARGET = rufus
  3. # This step produces the UPX compressed and signed releases that are made available for public download
  4. release: all
  5. @mv src/$(TARGET)$(EXEEXT) .
  6. @mv src/$(TARGET)_fd$(EXEEXT) .
  7. @$(STRIP) $(TARGET)$(EXEEXT)
  8. @$(STRIP) $(TARGET)_fd$(EXEEXT)
  9. @upx $(TARGET)$(EXEEXT)
  10. @upx $(TARGET)_fd$(EXEEXT)
  11. @cmd.exe /k _sign.cmd $(TARGET)$(EXEEXT) $(TARGET)_fd$(EXEEXT)
  12. @mv $(TARGET)$(EXEEXT) $(TARGET)_v$(VERSION)$(EXEEXT)
  13. @mv $(TARGET)_fd$(EXEEXT) $(TARGET)_v$(VERSION)f$(EXEEXT)