X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=client%2FMakefile;h=1787c7b69bce0192e28fb9ba7a144bf5571c99bd;hp=8110c877369eda8c8c36955585e5af2a0b8a49e5;hb=f15cabc15a42fb1b0b57e433dc3a1f300cff2b6c;hpb=16c3c325ed800a4653e8a4e22f91504228820df8 diff --git a/client/Makefile b/client/Makefile index 8110c87..1787c7b 100644 --- a/client/Makefile +++ b/client/Makefile @@ -1,4 +1,5 @@ - +#This is a py2exe Makefile for the Windows port, which is only +#maintained when Travis gets stuck doing MSP430 manufacturing. link: rm -f /usr/local/bin/goodfet.* /usr/local/bin/goodfet @@ -11,6 +12,11 @@ install: py2exepub: #publish the windows build. rsync --exclude .svn -ave ssh --progress --chmod=a+rx tmp/goodfet.zip travisutk,goodfet@web.sourceforge.net:htdocs/dist/gfwin.zip +py2exeinstall: py2exe + rm -rf "c:\goodfet\bin" + md "c:\goodfet\bin" + copy tmp\\goodfet\\* c:\\goodfet\\bin\\ + rem Be sure to add C:\goodfet\bin to %Path%. py2exe: #Run this from Win32 with Python, py2exe, py-serial, and GNU utils. #MSP430 Client @@ -21,10 +27,11 @@ py2exe: sed s/PYTHONCONSOLE/goodfet.monitor/ setup.py python setup.py py2exe mv dist/goodfet.exe dist/gfmon.exe -#BSL - sed s/PYTHONCONSOLE/goodfet.bsl/ setup.py +#JTAG + sed s/PYTHONCONSOLE/goodfet.jtag/ setup.py python setup.py py2exe - mv dist/goodfet.exe dist/gfbsl.exe + mv dist/goodfet.exe dist/gfjtag.exe + #BSL sed s/PYTHONCONSOLE/goodfet.bsl/ setup.py python setup.py py2exe @@ -33,6 +40,14 @@ py2exe: sed s/PYTHONCONSOLE/goodfet.avr/ setup.py python setup.py py2exe mv dist/goodfet.exe dist/gfavr.exe +#PIC + sed s/PYTHONCONSOLE/goodfet.pic/ setup.py + python setup.py py2exe + mv dist/goodfet.exe dist/gfpic.exe +#Chipcon SPI + sed s/PYTHONCONSOLE/goodfet.ccspi/ setup.py + python setup.py py2exe + mv dist/goodfet.exe dist/gfccspi.exe #Chipcon sed s/PYTHONCONSOLE/goodfet.cc/ setup.py python setup.py py2exe @@ -45,6 +60,19 @@ py2exe: sed s/PYTHONCONSOLE/goodfet.nrf/ setup.py python setup.py py2exe mv dist/goodfet.exe dist/gfnrf.exe +#RF + sed s/PYTHONCONSOLE/goodfet.rf/ setup.py + python setup.py py2exe + mv dist/goodfet.exe dist/gfrf.exe +#25C SPI EEPROM + sed s/PYTHONCONSOLE/goodfet.spi25c/ setup.py + python setup.py py2exe + mv dist/goodfet.exe dist/gfspi25.exe +#Silicon Labs C2 + sed s/PYTHONCONSOLE/goodfet.slc2/ setup.py + python setup.py py2exe + mv dist/goodfet.exe dist/gfslc2.exe + #Goodfet. This must be last. sed s/PYTHONCONSOLE/goodfet/ setup.py python setup.py py2exe