makefile.VMS
资源名称:pccts133.zip [点击查看]
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:1k
源码类别:
编译器/解释器
开发平台:
Others
- $! File: MAKE.COM - Makefile for ANTLR 1.33 on OpenVMS, DECC
- $!
- $! History:
- $! ---------
- $! 20-Mar-1992 Fred Scholldorf Hacked together for VAX/VMS.
- $! 24-Mar-1992 Fred Scholldorf LINK against VAXCRTL sharable library.
- $! 24-Aug-1993 Fred Scholldorf Upgrade for ANTLR V1.10.
- $! 27-Jan-1998 J.F. Pieronne Upgrade for ANTLR V1.33, DECC
- $!
- $ set noon !Don't stop on errors.
- $!
- $ if P1 .eqs. "LINK" then goto relink
- $!
- $ define/nolog pccts_h "[-.h]"
- $ define/nolog support_set "[-.support.set]"
- $!
- $ delete/nolog *.obj;* !Get rid of existing .OBJ files.
- $!
- $ options = "/INCLUDE=(pccts_h,support_set)/define=(__STDC__,USER_ZZSYN)"
- $ CC 'options' antlr
- $ CC 'options' scan
- $ CC 'options' err
- $ CC 'options' bits
- $ CC 'options' build
- $ CC 'options' fset2
- $ CC 'options' fset
- $ CC 'options' gen
- $ CC 'options' globals
- $ CC 'options' hash
- $ CC 'options' lex
- $ CC 'options' main
- $ CC 'options' misc
- $ CC 'options' pred
- $ CC 'options' egman
- $ CC 'options' mrhoist
- $ CC 'options' fcache
- $ CC 'options' [-.support.set]set
- $!
- $relink:
- $ LINK antlr,scan,err,bits,build, -
- fset2,fset,gen,globals,hash, -
- lex,main,misc,pred,egman,mrhoist,fcache,set, -
- sys$input:/options
- ! sys$share:vaxcrtl.exe/share
- $ EXIT