summaryrefslogtreecommitdiff
path: root/v4.0/src/CMD/RESTORE/MAKEFILE
diff options
context:
space:
mode:
Diffstat (limited to 'v4.0/src/CMD/RESTORE/MAKEFILE')
-rw-r--r--v4.0/src/CMD/RESTORE/MAKEFILE108
1 files changed, 108 insertions, 0 deletions
diff --git a/v4.0/src/CMD/RESTORE/MAKEFILE b/v4.0/src/CMD/RESTORE/MAKEFILE
new file mode 100644
index 0000000..ba67431
--- /dev/null
+++ b/v4.0/src/CMD/RESTORE/MAKEFILE
@@ -0,0 +1,108 @@
1#************************** makefile for cmd\... ***************************
2
3msg =..\..\messages
4dos =..\..\dos
5inc =..\..\inc
6hinc =..\..\h
7
8#
9####################### dependencies begin here. #########################
10#
11
12map =..\..\mapper
13here =..\cmd\restore
14
15all: not_file restore.com
16
17#-------BUILD MAPPER ----------------
18not_file : makefile #Always perform these steps!
19 cd $(map)
20 nmake
21 cd $(here)
22
23
24_parse.obj : _parse.asm \
25 makefile \
26 $(inc)\parse.asm \
27 $(inc)\psdata.inc
28
29restore.ctl : restore.skl \
30 makefile \
31 $(msg)\$(COUNTRY).msg
32
33
34_msgret.obj: _msgret.asm \
35 makefile \
36 restore.ctl \
37 restore.cl1 \
38 $(inc)\msgserv.asm \
39 $(inc)\sysmsg.inc
40
41
42restore.obj : restore.c rt.h rt1.h rt2.h restpars.h makefile \
43 $(hinc)\comsub.h $(hinc)\doscalls.h \
44 $(hinc)\error.h
45
46rtt1.obj : rtt1.c rt.h rt1.h rt2.h restpars.h makefile \
47 $(hinc)\comsub.h $(hinc)\doscalls.h \
48 $(hinc)\error.h
49
50rtt3.obj : rtt3.c rt.h rt1.h rt2.h restpars.h makefile \
51 $(hinc)\comsub.h $(hinc)\doscalls.h \
52 $(hinc)\error.h
53
54rtdo.obj : rtdo.c rt.h rt1.h rt2.h restpars.h makefile \
55 $(hinc)\comsub.h $(hinc)\doscalls.h \
56 $(hinc)\error.h
57
58rtdo1.obj : rtdo1.c rt.h rt1.h rt2.h restpars.h makefile \
59 $(hinc)\comsub.h $(hinc)\doscalls.h \
60 $(hinc)\error.h
61
62rtnew.obj : rtnew.c rt.h rt1.h rt2.h restpars.h makefile \
63 $(hinc)\comsub.h $(hinc)\doscalls.h \
64 $(hinc)\error.h
65
66rtnew1.obj : rtnew1.c rt.h rt1.h rt2.h restpars.h makefile \
67 $(hinc)\comsub.h $(hinc)\doscalls.h \
68 $(hinc)\error.h
69
70rtold.obj : rtold.c rt.h rt1.h rt2.h restpars.h makefile \
71 $(hinc)\comsub.h $(hinc)\doscalls.h \
72 $(hinc)\error.h
73
74rtold1.obj : rtold1.c rt.h rt1.h rt2.h restpars.h makefile \
75 $(hinc)\comsub.h $(hinc)\doscalls.h \
76 $(hinc)\error.h
77
78rtfile.obj : rtfile.c rt.h rt1.h rt2.h restpars.h makefile \
79 $(hinc)\comsub.h $(hinc)\doscalls.h \
80 $(hinc)\error.h
81
82rtfile1.obj : rtfile1.c rt.h rt1.h rt2.h restpars.h makefile \
83 $(hinc)\comsub.h $(hinc)\doscalls.h \
84 $(hinc)\error.h
85
86restpars.obj : restpars.c rt.h rt1.h rt2.h restpars.h makefile \
87 $(hinc)\comsub.h $(hinc)\doscalls.h \
88 $(hinc)\error.h
89
90restore.com: restore.obj \
91 restpars.obj \
92 rtdo.obj \
93 rtdo1.obj \
94 rtfile.obj \
95 rtfile1.obj \
96 rtnew.obj \
97 rtnew1.obj \
98 rtold.obj \
99 rtold1.obj \
100 rtt1.obj \
101 rtt3.obj \
102 restore.lnk \
103 _msgret.obj \
104 _parse.obj \
105 $(map)\mapper.lib
106 link @restore.lnk
107 convert restore.exe restore.com
108 erase restore.exe