Changeset 118

Show
Ignore:
Timestamp:
07/07/11 15:22:47 (11 months ago)
Author:
mgalloy
Message:

Using current IDL to build docs and IDL 6.4 to build .sav file.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r117 r118  
    22REVISION=r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 
    33RELEASE="$(VERSION)-$(REVISION)" 
    4 IDL=idl 
     4IDL_DOCGEN=idl 
     5IDL_SAVFILE=idl64 
    56 
    67.PHONY: all doc userdoc webdoc clean dist srcdist version 
     
    1011 
    1112doc: 
    12         idl -e mgunit_build_docs 
     13        $(IDL_DOCGEN) -e mgunit_build_docs 
    1314 
    1415userdoc: 
    15         idl -e mgunit_build_userdocs 
     16        $(IDL_DOCGEN) -e mgunit_build_userdocs 
    1617 
    1718webdoc: 
    18         idl -e mgunit_build_userdocs 
     19        $(IDL_DOCGEN) -e mgunit_build_userdocs 
    1920        scp -r api-userdocs/* idldev.com:~/docs.idldev.com/mgunit 
    2021 
     
    3435        make version 
    3536 
    36         $(IDL) -e mgunit_build_userdocs 
     37        make userdoc 
    3738 
    38         $(IDL) -IDL_STARTUP "" mgunit_build 
     39        $(IDL_SAVFILE) -IDL_STARTUP "" mgunit_build 
    3940 
    4041        mkdir mgunit-$(RELEASE)/ 
     
    6364        rm -rf api-docs/ 
    6465 
    65         $(IDL) -e mgunit_build_docs 
     66        make version 
     67        make doc 
    6668 
    6769        mkdir mgunit-src-$(RELEASE)/ 
  • trunk/src/mgunit_version.pro

    r117 r118  
    1616   
    1717  version = '1.2' 
    18   revision = 'r116' 
     18  revision = 'r117' 
    1919   
    2020  return, version + (keyword_set(full) ? (' ' + revision) : '')