blob: 8911afe3cd0240f5ce036f9cd726f608d79834e5 (
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. #########################
#
all: fastopen.exe
fastopen.ctl: fastopen.skl makefile $(msg)\$(COUNTRY).msg
fastopen.obj: fastopen.asm $(inc)\fastopen.inc \
makefile
fastseek.obj: fastseek.asm $(inc)\fastopen.inc \
makefile
fastinit.obj: fastinit.asm $(inc)\dossym.inc $(inc)\fastopen.inc \
makefile
fastp.obj: fastp.asm \
makefile \
$(inc)\psdata.inc \
$(inc)\parse.asm
fastsm.obj: fastsm.asm \
makefile \
$(inc)\versiona.inc \
$(inc)\copyrigh.inc \
$(inc)\sysmsg.inc \
$(inc)\msgserv.asm \
fastopen.ctl \
fastopen.cl1 \
fastopen.cl2 \
fastopen.cla \
fastopen.exe: fastopen.obj \
fastopen.lnk \
fastseek.obj \
fastinit.obj \
fastp.obj \
fastsm.obj
link @fastopen.lnk
|