~ubuntu-branches/ubuntu/utopic/cdrdao/utopic

« back to all changes in this revision

Viewing changes to pccts/antlr/makefile.VMS

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Suffield
  • Date: 2004-06-24 22:33:16 UTC
  • Revision ID: james.westby@ubuntu.com-20040624223316-534onzugaeeyq61j
Tags: upstream-1.1.9
ImportĀ upstreamĀ versionĀ 1.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
$! File: MAKE.COM - Makefile for ANTLR 1.33 on OpenVMS, DECC
 
2
$!
 
3
$! History:
 
4
$! ---------
 
5
$! 20-Mar-1992  Fred Scholldorf         Hacked together for VAX/VMS.
 
6
$! 24-Mar-1992  Fred Scholldorf         LINK against VAXCRTL sharable library.
 
7
$! 24-Aug-1993  Fred Scholldorf         Upgrade for ANTLR V1.10.
 
8
$! 27-Jan-1998  J.F. Pieronne           Upgrade for ANTLR V1.33, DECC
 
9
$!
 
10
$ set noon      !Don't stop on errors.
 
11
$!
 
12
$ if P1 .eqs. "LINK" then goto relink
 
13
$!
 
14
$ define/nolog pccts_h     "[-.h]"
 
15
$ define/nolog support_set "[-.support.set]"
 
16
$!
 
17
$ delete/nolog *.obj;*  !Get rid of existing .OBJ files.
 
18
$!
 
19
$ options = "/INCLUDE=(pccts_h,support_set)/define=(USER_ZZSYN)"
 
20
$ CC 'options' antlr
 
21
$ CC 'options' scan
 
22
$ CC 'options' err
 
23
$ CC 'options' bits
 
24
$ CC 'options' build
 
25
$ CC 'options' fset2
 
26
$ CC 'options' fset
 
27
$ CC 'options' gen
 
28
$ CC 'options' globals
 
29
$ CC 'options' hash
 
30
$ CC 'options' lex
 
31
$ CC 'options' main
 
32
$ CC 'options' misc
 
33
$ CC 'options' pred
 
34
$ CC 'options' egman
 
35
$ CC 'options' mrhoist
 
36
$ CC 'options' fcache
 
37
$ CC 'options' [-.support.set]set
 
38
$!
 
39
$relink:
 
40
$ LINK  antlr,scan,err,bits,build,      -
 
41
        fset2,fset,gen,globals,hash,    -
 
42
        lex,main,misc,pred,egman,mrhoist,fcache,set,    -
 
43
        sys$input:/options
 
44
!       sys$share:vaxcrtl.exe/share
 
45
$ EXIT