blob: 9ad2e7be211f82defbd7ed4adc4a5710f928d7ef (
plain) (
blame)
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
|
#************************ makefile for cmd\subst *************************
msg =..\..\messages
dos =..\..\dos
inc =..\..\inc
hinc =..\..\h
map =..\..\mapper
here =..\cmd\subst # This is the path from INC or MAP dir's to here.
make =nmake -i
#
####################### dependencies begin here. #########################
#
all: subst.exe
$(inc)\errtst.obj:
cd $(inc)
$(make)
cd $(here)
$(inc)\sysvar.obj:
cd $(inc)
$(make)
cd $(here)
$(inc)\cds.obj:
cd $(inc)
$(make)
cd $(here)
$(inc)\dpb.obj:
cd $(inc)
$(make)
cd $(here)
$(inc)\comsubs.lib:
cd $(inc)
$(make)
cd $(here)
$(map)\mapper.lib:
cd $(map)
$(make)
cd $(here)
subst.ctl: subst.skl \
$(msg)\$(COUNTRY).msg \
makefile
_msgret.obj: _msgret.asm \
$(inc)\msgserv.asm \
$(inc)\sysmsg.inc \
subst.ctl \
subst.cla \
subst.cl1 \
subst.cl2 \
subst.skl
_parse.obj: _parse.asm \
$(inc)\parse.asm \
$(inc)\psdata.inc
subst.obj: subst.c \
makefile \
substpar.h \
$(hinc)\cds.h \
$(hinc)\jointype.h \
$(hinc)\sysvar.h
subst.exe: subst.obj \
$(inc)\cds.obj \
$(inc)\dpb.obj \
$(inc)\errtst.obj \
$(inc)\sysvar.obj \
$(map)\mapper.lib \
$(inc)\comsubs.lib \
_msgret.obj \
_parse.obj \
subst.lnk
link @subst.lnk
|