]> pd.if.org Git - pccts/blob - dlg/makefile.VMS
auto commit for import
[pccts] / dlg / makefile.VMS
1 $! File: MAKE.COM - Makefile for DLG 1.33
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 PCCTS V1.10.
8 $!
9 $ set noon      !Don't stop on errors.
10 $!
11 $ if P1 .eqs. "LINK" then goto relink
12 $!
13 $ define pccts_h "[-.h]"
14 $ define support_set "[-.support.set]"
15 $!
16 $ delete/nolog *.obj;*  !Get rid of existing .OBJ files.
17 $!
18 $ options = "/INCLUDE=(pccts_h,support_set)"
19 $ CC 'options' dlg_a
20 $ CC 'options' dlg_p
21 $ CC 'options' err
22 $ CC 'options' main
23 $ CC 'options' [-.support.set]set
24 $ CC 'options' support 
25 $ CC 'options' output
26 $ CC 'options' relabel 
27 $ CC 'options' automata
28 $!
29 $relink:
30 $ LINK  /EXE=dlg.exe    -
31         dlg_a,dlg_p,err,main,   -
32         set,support,output,     -
33         relabel,automata,       -
34         sys$input:/options
35         sys$share:vaxcrtl.exe/share
36 $ EXIT