summaryrefslogtreecommitdiff
path: root/support/vvcode/descrip.mms
blob: 2bd1c8156d34561db37cc67c03a92316d0ab0754 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
##############################################################################
##############################################################################
##
##  ARCHIVE HEADER INFORMATION
##
##  @MMS-Description-File{
##      FILENAME    = "descrip.mms",
##      VERSION     = "1.00",
##      DATE        = "",
##      TIME        = "",
##
##      AUTHOR      = "Niel Kempson",
##      ADDRESS     = "25 Whitethorn Drive, Cheltenham, GL52 5LL, England",
##      TELEPHONE   = "+44-242 579105",
##      EMAIL       = "kempson@tex.ac.uk (Internet)",
##
##      SUPPORTED   = "yes",
##      ARCHIVED    = "tex.ac.uk, ftp.tex.ac.uk",
##      KEYWORDS    = "VVcode",
##
##      CODETABLE   = "ISO/ASCII",
##      CHECKSUM    = "51492 1481 5732 57976",
##
##      DOCSTRING   = { This is the VVCODE description file for use with
##                      the VAX/VMS Module Management System (MMS) - DEC's
##                      equivalent to Make.
##                  }
##  }
##
##  MODULE CONTENTS
##
##      [tbs]
##
##  COPYRIGHT
##
##      Copyright (c) 1991-1993 by Niel Kempson <kempson@tex.ac.uk>
##
##      This program is free software; you can redistribute it and/or
##      modify it under the terms of the GNU General Public License as
##      published by the Free Software Foundation; either version 1, or
##      (at your option) any later version.
##
##      This program is distributed in the hope that it will be useful,
##      but WITHOUT ANY WARRANTY; without even the implied warranty of
##      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
##      General Public License for more details.
##
##      You should have received a copy of the GNU General Public License
##      along with this program; if not, write to the Free Software
##      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##
##      In other words, you are welcome to use, share and improve this
##      program.  You are forbidden to forbid anyone else to use, share
##      and improve what you give them.   Help stamp out software-hoarding!  
##
##  CHANGE LOG
##
##############################################################################
##############################################################################


##############################################################################
#
# Local definitions for file types and compilation / linking.
#
# If your system is already supported it should not be necessary to modify
# any part of the description file except the local definitions below.	 
#
# COMPILER/LINKER
#
#   CC		    the command used to invoke the C compiler
#   CFLAGS	    compiler command line flags to be used
#   CCDEFINES	    symbols to be #defined when compiling
#
#   LINK	    the command used to invoke the linker
#   LINKFLAGS       linker command line flags to be used
#
# The definitions are used to compile and link as shown below:
#
#   Compiling C programs (e.g. xx.c)
#
#	$(CC)  $(CFLAGS)  $(CCDEFINES)  xx.c
#
#   Linking object files (e.g. xx.obj, yy.obj & zz.obj)
#
#	$(LINK)  $(LINKFLAGS)  xx.obj,yy.obj,zz.obj,vvcode.opt/OPTION
#
#       where vvcode.opt contains the single line:
#
#           SYS$LIBRARY:VAXCRTL/SHAREABLE
#
#   Here are some examples known to work.
#
#   VAX/VMS C v3.1
#
#       CC	    = cc
#       CFLAGS      = /WARNINGS /STANDARD=PORTABLE /DEBUG /NOOPTIMIZE
#       CCDEFINES   =
#       
#       LINK        = LINK /TRACEBACK /NODEBUG
#       LINKFLAGS   = /TRACEBACK
#
##############################################################################
# Start of local definitions.
##############################################################################
CC	    = cc
CFLAGS      = /WARNINGS /STANDARD=PORTABLE /DEBUG /NOOPTIMIZE
CCDEFINES   =

LINK        = LINK /TRACEBACK /NODEBUG
LINKFLAGS   = /TRACEBACK
##############################################################################
# End of local definitions.
##############################################################################


#############################################################################=
# File types and default rule for compilation
##############################################################################
EXE		= .exe
OBJ		= .obj

.SUFFIXES       .c .h $(OBJ) $(EXE)

.c.obj:
	$(CC)  $(CFLAGS)  $*.c    	

##############################################################################
# Target Groupings
##############################################################################
HDRFILES	= checkos.h machine.h local.h globals.h specific.h vvutils.h

OBJFILES	= vvencode$(OBJ) vvdecode$(OBJ) vveparse$(OBJ) -
                  vvutils$(OBJ) vaxvms$(OBJ)

EXEFILES	= vvencode$(EXE)  vvdecode$(EXE)


##############################################################################
# Top level targets
##############################################################################
vvcode :		$(EXEFILES)
    	@ WRITE SYS$OUTPUT "VVcode built at ''F$TIME()'"
    
clean :
	@ WRITE SYS$OUTPUT "Cleaning up at ''F$TIME()'"
	PURGE
	IF F$SEARCH ("*.dia;*") .NES. "" THEN $ DELETE *.dia;*
	IF F$SEARCH ("*.exe;*") .NES. "" THEN $ DELETE *.exe;*
	IF F$SEARCH ("*.lis;*") .NES. "" THEN $ DELETE *.lis;*
	IF F$SEARCH ("*.obj;*") .NES. "" THEN $ DELETE *.obj;*


##############################################################################
# Dependencies for executables
##############################################################################
vvencode$(EXE) :    vvencode$(OBJ) vvutils$(OBJ) vaxvms$(OBJ) vvcode.opt
    	$(LINK)  $(LINKFLAGS) vvencode$(OBJ), vvutils$(OBJ), vaxvms$(OBJ), -
                              vvcode.opt/OPTION

vvdecode$(EXE) :    vvdecode$(OBJ) vveparse$(OBJ) vvutils$(OBJ) -
                    vaxvms$(OBJ) vvcode.opt
    	$(LINK)  $(LINKFLAGS)  vvdecode$(OBJ), vveparse$(OBJ), -
                               vvutils$(OBJ), vaxvms$(OBJ), -
                               vvcode.opt/OPTION

##############################################################################
# Dependencies for the linker option file
##############################################################################
vvcode.opt :
        OPEN /WRITE options_file vvcode.opt
        WRITE options_file "SYS$LIBRARY:VAXCRTL /SHAREABLE"
        CLOSE options_file
                
##############################################################################
# Dependencies for object files
##############################################################################
vvencode$(OBJ) :    vvencode.c  $(HDRFILES)

vvdecode$(OBJ) :    vvdecode.c  $(HDRFILES) vveparse.h

vveparse$(OBJ) :    vveparse.c  $(HDRFILES) vveparse.h

vvutils$(OBJ) :     vvutils.c  $(HDRFILES)

vaxvms$(OBJ) :      vaxvms.c  $(HDRFILES)