blob: 38ff28417ef170f631f62b5555d426163012b735 (
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
|
#************************** makefile for cmd\... ***************************
msg =..\..\messages
dos =..\..\dos
inc =..\..\inc
hinc =..\..\h
#
####################### dependencies begin here. #########################
#
map =..\..\mapper
all: replace.exe
replace.ctl: replace.skl \
$(msg)\$(COUNTRY).msg \
makefile
_msgret.obj: _msgret.asm \
$(inc)\msgserv.asm \
$(inc)\sysmsg.inc \
replace.ctl \
replace.cla \
replace.cl1 \
replace.cl2 \
replace.skl
_parse.obj: _parse.asm \
$(inc)\parse.asm \
$(inc)\psdata.inc
_replace.obj: _replace.asm
replace.obj: replace.c \
makefile \
replacep.h \
$(hinc)\comsub.h
replace.exe: replace.obj \
_replace.obj \
$(map)\mapper.lib \
$(inc)\comsubs.lib \
_msgret.obj \
_parse.obj \
replace.lnk
link @replace.lnk
|