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