Changeset 717

Show
Ignore:
Timestamp:
10/20/10 13:58:17 (19 months ago)
Author:
mgalloy
Message:

Changing version number in trunk to 3.4dev.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r714 r717  
    1 VERSION=3.3 
     1VERSION=3.4dev 
    22REVISION=-r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 
    33IDL=idl64 
    44 
    55.PHONY: clean doc book regression tests version srcdist dist updates 
    6          
     6 
    77clean: 
    88        rm -f *.zip 
     
    1212        rm -rf regression_test/*-docs 
    1313        rm -rf unit_tests/*-docs 
    14          
     14 
    1515doc: 
    1616        $(IDL) < idldoc_build_docs.pro 
     
    2020        cd api-book; pdflatex -halt-on-error index.tex 
    2121        cd api-book; pdflatex -halt-on-error index.tex   
    22          
     22 
    2323regression: 
    2424        $(IDL) -e "mgunit, 'docrtalltests_uts'" 
    25          
     25 
    2626tests: 
    2727        $(IDL) -e "mgunit, 'docutalltests_uts'" 
    28          
     28 
    2929version: 
    3030        sed "s/version = '.*'/version = '$(VERSION)'/" < src/idldoc_version.pro | sed "s/revision = '.*'/revision = '$(REVISION)'/" > idldoc_version.pro 
    3131        mv idldoc_version.pro src/ 
    32          
     32 
    3333srcdist: 
    3434        make version 
    35   
     35 
    3636        rm -rf idldoc-$(VERSION)-src/ 
    3737        svn export . idldoc-$(VERSION)-src/ 
     
    4343        zip -r idldoc-$(VERSION)-src.zip idldoc-$(VERSION)-src/* 
    4444        rm -rf idldoc-$(VERSION)-src 
    45          
     45 
    4646dist: 
    4747        make version 
    48          
     48 
    4949        rm -rf idldoc-$(VERSION)         
    5050        mkdir idldoc-$(VERSION) 
    51          
     51 
    5252        $(IDL) -IDL_STARTUP "" < idldoc_build.pro 
    5353        mv idldoc.sav idldoc-$(VERSION)/ 
    54          
     54 
    5555        cp COPYING idldoc-$(VERSION)/ 
    5656        cp CREDITS idldoc-$(VERSION)/ 
     
    6262        cp docs/idldoc-reference.pdf idldoc-$(VERSION)/docs/ 
    6363        cp docs/idldoc-tutorial.pdf idldoc-$(VERSION)/docs/ 
    64          
     64 
    6565        svn export src/templates idldoc-$(VERSION)/templates/ 
    6666        svn export src/resources idldoc-$(VERSION)/resources/ 
    67          
     67 
    6868        zip -r idldoc-$(VERSION).zip idldoc-$(VERSION)/* 
    6969        rm -rf idldoc-$(VERSION)