Changeset 49

Show
Ignore:
Timestamp:
04/09/09 10:14:36 (3 years ago)
Author:
mgalloy
Message:

Getting ready for release; creating a srcdist make file target which will be the default distribution; adding documentation/examples to the docs directory.

Location:
trunk/mgunit
Files:
4 added
1 modified
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/mgunit/COPYING

  • trunk/mgunit/Makefile

    r46 r49  
    44IDL=idl 
    55 
    6 .PHONY: doc clean dist 
     6.PHONY: all doc clean dist srcdist 
    77          
    88all: 
     
    3333        cp src/error_is_pass.pro mgunit-$(RELEASE)/ 
    3434        cp src/style.css mgunit-$(RELEASE)/ 
     35        cp src/test-templates.xml mgunit-$(RELEASE)/ 
     36        cp COPYING mgunit-$(RELEASE)/ 
     37        cp RELEASE mgunit-$(RELEASE)/    
    3538         
    3639        zip -r mgunit-$(RELEASE).zip mgunit-$(RELEASE)/* 
    3740        rm -rf mgunit-$(RELEASE) 
     41 
     42srcdist: 
     43        rm -rf mgunit-src-$(RELEASE) 
     44        rm -rf api-docs/ 
     45 
     46        $(IDL) -e mgunit_build_docs 
     47 
     48        mkdir mgunit-src-$(RELEASE)/ 
     49 
     50        cp -r docs mgunit-src-$(RELEASE)/ 
     51        cp -r api-docs mgunit-src-$(RELEASE)/ 
     52        cp src/*.pro mgunit-src-$(RELEASE)/ 
     53        cp src/style.css mgunit-src-$(RELEASE)/ 
     54        cp src/dist_tools/mg_src_root.pro mgunit-src-$(RELEASE)/ 
     55        cp src/cmdline_tools/mg_ansicode.pro mgunit-src-$(RELEASE)/ 
     56        cp src/test-templates.xml mgunit-src-$(RELEASE)/ 
     57        cp COPYING mgunit-src-$(RELEASE)/ 
     58        cp RELEASE mgunit-src-$(RELEASE)/        
     59         
     60        zip -r mgunit-src-$(RELEASE).zip mgunit-src-$(RELEASE)/* 
     61        rm -rf mgunit-src-$(RELEASE) 
     62         
  • trunk/mgunit/RELEASE

  • trunk/mgunit/src/test-templates.xml