home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-10-05 | 638 b | 36 lines | [TEXT/MPS ] |
- #
- # File: cpp_vu
- #
- # Contains: This script preprocesses VU script files using C preprocessor
- # redirecting the output to files whose name is same as the corresponding
- # script file, with an additional extension '.cpp'
- #
- #
- # Written by: P Nagarajan
- #
- # Copyright: © 1989 by Apple Computer, Inc., all rights reserved.
- #
- # Change History:
- #
- # 6/5/89 naga creation
- #
- # To Do:
- #
-
- set exit 0
- set file "{1}"
- Loop
- If "`Exists -f "{file}"`" != ""
- C -e "{file}" > "{file}.cpp"
- echo "{file}.cpp"
- Else
- echo "{file} does not exist!" >> "{Worksheet}"
-
- exit 1
- End #If file exists
- Shift
- Break If {#} == 0
- Set file "{1}"
- End
-
-