diff options
Diffstat (limited to 'v4.0/src/CMD/RESTORE/MAKEFILE')
| -rw-r--r-- | v4.0/src/CMD/RESTORE/MAKEFILE | 108 |
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 | |||
| 3 | msg =..\..\messages | ||
| 4 | dos =..\..\dos | ||
| 5 | inc =..\..\inc | ||
| 6 | hinc =..\..\h | ||
| 7 | |||
| 8 | # | ||
| 9 | ####################### dependencies begin here. ######################### | ||
| 10 | # | ||
| 11 | |||
| 12 | map =..\..\mapper | ||
| 13 | here =..\cmd\restore | ||
| 14 | |||
| 15 | all: not_file restore.com | ||
| 16 | |||
| 17 | #-------BUILD MAPPER ---------------- | ||
| 18 | not_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 | |||
| 29 | restore.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 | |||
| 42 | restore.obj : restore.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 43 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 44 | $(hinc)\error.h | ||
| 45 | |||
| 46 | rtt1.obj : rtt1.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 47 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 48 | $(hinc)\error.h | ||
| 49 | |||
| 50 | rtt3.obj : rtt3.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 51 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 52 | $(hinc)\error.h | ||
| 53 | |||
| 54 | rtdo.obj : rtdo.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 55 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 56 | $(hinc)\error.h | ||
| 57 | |||
| 58 | rtdo1.obj : rtdo1.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 59 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 60 | $(hinc)\error.h | ||
| 61 | |||
| 62 | rtnew.obj : rtnew.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 63 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 64 | $(hinc)\error.h | ||
| 65 | |||
| 66 | rtnew1.obj : rtnew1.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 67 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 68 | $(hinc)\error.h | ||
| 69 | |||
| 70 | rtold.obj : rtold.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 71 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 72 | $(hinc)\error.h | ||
| 73 | |||
| 74 | rtold1.obj : rtold1.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 75 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 76 | $(hinc)\error.h | ||
| 77 | |||
| 78 | rtfile.obj : rtfile.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 79 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 80 | $(hinc)\error.h | ||
| 81 | |||
| 82 | rtfile1.obj : rtfile1.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 83 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 84 | $(hinc)\error.h | ||
| 85 | |||
| 86 | restpars.obj : restpars.c rt.h rt1.h rt2.h restpars.h makefile \ | ||
| 87 | $(hinc)\comsub.h $(hinc)\doscalls.h \ | ||
| 88 | $(hinc)\error.h | ||
| 89 | |||
| 90 | restore.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 | ||