Changeset 337


Ignore:
Timestamp:
07/20/10 19:04:18 (6 years ago)
Author:
mmckerns
Message:

automate windows build (ticket #127)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • releases/Makefile

    r248 r337  
    44#--------------------------------------------------- 
    55 
    6 all: patch release clean 
     6all: patch release zip exe clean 
     7tgz: patch release clean 
     8src: patch release zip clean 
     9win: patch zip exe clean 
     10exe: installer distclean 
    711 
    812patch: 
    913        patch -p0 -i mystic-0.2a1-patch${NPATCH_0_2a1}.diff 
    1014 
     15zip: 
     16        zip -r mystic-0.2a1-p${NPATCH_0_2a1}.zip mystic-0.2a1 
     17 
    1118release: 
    1219        tar -cvzf mystic-0.2a1-p${NPATCH_0_2a1}.tgz mystic-0.2a1 
     20 
     21installer: 
     22        cd mystic-0.2a1; python setup.py bdist --format=wininst; cd .. 
     23        cd mystic-0.2a1; cd dist; mv -f mystic-0.2a1*exe ..; cd ..; cd .. 
     24        cd mystic-0.2a1; mv -f mystic-0.2a1*exe ..; cd .. 
     25        mv -f mystic-0.2a1*exe mystic-0.2a1-p${NPATCH_0_2a1}.win32.exe 
     26 
     27distclean: 
     28        cd mystic-0.2a1; rm -rf build dist mystic.egg-info; cd .. 
    1329 
    1430clean: 
Note: See TracChangeset for help on using the changeset viewer.