- Timestamp:
- 12/12/11 14:09:23 (5 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
idldoc_build.pro (modified) (1 diff)
-
Makefile (modified) (1 diff)
-
src/idldoc_version.pro (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/idldoc_build.pro
r661 r775 10 10 @idldoc_compile_all 11 11 12 ; compile any system routines that are used in the required code 13 resolve_all, skip_routines=['mg_termistty'] 12 ; NOT resolving all IDL lib routines anymore, so that the .sav file generated 13 ; with IDL 6.4 can be safely used with later versions of IDL that may have 14 ; different versions of the IDL library routines. IDLdoc is not intended to 15 ; run in a runtime or VM environment, so they are not needed anyway. The .sav 16 ; file is produced simply as a way to package all the required routines in a 17 ; single file. 14 18 15 19 ; create the sav file -
trunk/Makefile
r769 r775 1 VERSION=3.4. 11 VERSION=3.4.2 2 2 REVISION=-r`svn info | sed -n 's/Revision: \(.*\)/\1/p'` 3 3 IDL=idl64 4 DOC_IDL=idl 4 DOC_IDL=idl81 5 5 6 6 .PHONY: all clean doc book regression tests version srcdist dist updates -
trunk/src/idldoc_version.pro
r769 r775 15 15 compile_opt strictarr, hidden 16 16 17 version = '3.4. 1'18 revision = '-r7 67'17 version = '3.4.2' 18 revision = '-r770' 19 19 20 20 return, version + (keyword_set(full) ? (' ' + revision) : '')
