|
Revision 364, 474 bytes
(checked in by mgalloy, 5 years ago)
|
|
Made a srcdist target for the Makefile to distribute source code to those who don't want to checkout from Subversion.
|
| Line | |
|---|
| 1 | ; docformat = 'rst' |
|---|
| 2 | |
|---|
| 3 | ;+ |
|---|
| 4 | ; Returns IDLdoc version. This file is automatically edited by the build process |
|---|
| 5 | ; to edit the contents of the version and revision variables below. |
|---|
| 6 | ; |
|---|
| 7 | ; :Returns: string |
|---|
| 8 | ; :Keywords: |
|---|
| 9 | ; full : in, optional, type=boolean |
|---|
| 10 | ; set to return Subversion revision as well |
|---|
| 11 | ;- |
|---|
| 12 | function idldoc_version, full=full |
|---|
| 13 | compile_opt strictarr |
|---|
| 14 | |
|---|
| 15 | version = '3.0b3' |
|---|
| 16 | revision = '-r363' |
|---|
| 17 | |
|---|
| 18 | return, version + (keyword_set(full) ? (' ' + revision) : '') |
|---|
| 19 | end |
|---|