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

[mingw] update autotools script following path change

This commit is contained in:
Pete Batard 2011-12-05 11:19:05 +00:00
parent 48f9dd47ae
commit 071cf84cc4
9 changed files with 488 additions and 35 deletions

9
Makefile.am Normal file
View file

@ -0,0 +1,9 @@
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)