File: makefile.VMS

package info (click to toggle)
pccts 1.33MR33-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,212 kB
  • ctags: 5,280
  • sloc: ansic: 46,051; cpp: 3,234; makefile: 957
file content (33 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
$! File: MAKE.COM - Makefile for SORCERER on OpenVMS, DECC
$!
$! History:
$! ---------
$! 27-Jan-1998  J.F. Pieronne           Initial Version
$!
$ 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)"
$ CC 'options' sor
$ CC 'options' scan
$ CC 'options' err
$ CC 'options' main
$ CC 'options' globals
$ CC 'options' gen
$ CC 'options' hash
$ CC 'options' look
$ CC 'options' cpp
$ CC 'options' [-.support.set]set
$!
$relink:
$ LINK/EXE=SOR.EXE sor,scan,err,main,globals,	-
	gen,hash,look,cpp,set,	-
	sys$input:/options
!	sys$share:vaxcrtl.exe/share
$ EXIT