Changeset 36

Show
Ignore:
Timestamp:
03/08/09 22:15:15 (3 years ago)
Author:
mgalloy
Message:

Updating dist target.

Location:
trunk/mgunit
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/mgunit

    • Property svn:ignore
      •  

        old new  
        11.project 
        22api-docs 
         3mgunit-*-r*.zip 
  • trunk/mgunit/compile_mgunit.pro

    r17 r36  
    22.compile mgutclirunner__define 
    33.compile mguttestsuite__define 
    4 .compile error_is_fail 
    5 .compile mguthtmlrunner__define 
    6 .compile error_is_pass        
     4.compile mguthtmlrunner__define      
    75.compile mguttestcase__define 
    86.compile mgunit 
    97.compile mguttestrunner__define 
     8.compile mgutcompoundrunner__define.pro 
     9.compile mg_ansicode 
  • trunk/mgunit/Makefile

    r34 r36  
    1 VERSION=1.0alpha 
     1VERSION=1.0beta 
    22REVISION=r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 
    33RELEASE="$(VERSION)-$(REVISION)" 
     
    1010         
    1111doc: 
    12         idl mgunit_build_docs 
     12        idl -e mgunit_build_docs 
    1313 
    1414clean: 
     
    2121        rm -rf api-docs/ 
    2222 
    23         $(IDL) mgunit_build_docs 
     23        $(IDL) -e mgunit_build_docs 
    2424         
    2525        $(IDL) -IDL_STARTUP "" mgunit_build 
    2626 
    27         mkdir mgunit-$(RELEASE) 
     27        mkdir mgunit-$(RELEASE)/ 
    2828 
    2929        mv mgunit.sav mgunit-$(RELEASE)/ 
    3030        cp -r docs mgunit-$(RELEASE)/ 
    31         cp -r api-docs/ mgunit-$(RELEASE)/api-docs/ 
     31        cp -r api-docs mgunit-$(RELEASE)/ 
     32        cp src/error_is_fail.pro mgunit-$(RELEASE)/ 
     33        cp src/error_is_pass.pro mgunit-$(RELEASE)/ 
     34        cp src/style.css mgunit-$(RELEASE)/ 
     35         
    3236        zip -r mgunit-$(RELEASE).zip mgunit-$(RELEASE)/* 
    3337        rm -rf mgunit-$(RELEASE) 
  • trunk/mgunit/mgunit_build_docs.pro

    r17 r36  
    1 @compile_mgunit 
     1; docformat = 'rst' 
    22 
    3 root = mg_src_root() 
     3;+ 
     4; Build mgunit docs. 
     5;- 
     6pro mgunit_build_docs 
     7  compile_opt strictarr 
     8   
     9  root = mg_src_root() 
    410 
    5 idldoc, root=filepath('', subdir='src', root=root), $ 
    6         output=filepath('', subdir='api-docs', root=root), $ 
    7         /nosource, $ 
    8         title='MGunit documentation', subtitle='Unit testing for IDL', $ 
    9         /embed 
    10          
    11 exit 
     11  idldoc, root=filepath('', subdir='src', root=root), $ 
     12          output=filepath('', subdir='api-docs', root=root), $ 
     13          /nosource, $ 
     14          title='MGunit documentation', subtitle='Unit testing for IDL', $ 
     15          /embed 
     16end