diff options
Diffstat (limited to 'v4.0/src/CMD/XCOPY/MAKEFILE')
| -rw-r--r-- | v4.0/src/CMD/XCOPY/MAKEFILE | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/v4.0/src/CMD/XCOPY/MAKEFILE b/v4.0/src/CMD/XCOPY/MAKEFILE new file mode 100644 index 0000000..d801f95 --- /dev/null +++ b/v4.0/src/CMD/XCOPY/MAKEFILE | |||
| @@ -0,0 +1,49 @@ | |||
| 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 | all: xcopy.exe | ||
| 13 | |||
| 14 | xcopy.ctl: xcopy.skl \ | ||
| 15 | $(msg)\$(COUNTRY).msg \ | ||
| 16 | makefile | ||
| 17 | |||
| 18 | xcopy.obj: xcopy.asm \ | ||
| 19 | makefile \ | ||
| 20 | $(inc)\versiona.inc \ | ||
| 21 | $(inc)\copyrigh.inc \ | ||
| 22 | $(inc)\sysmsg.inc \ | ||
| 23 | $(inc)\msgserv.asm \ | ||
| 24 | dos.equ \ | ||
| 25 | xcopy.equ \ | ||
| 26 | xcopy.ctl \ | ||
| 27 | xcopy.cl1 \ | ||
| 28 | xcopy.cl2 \ | ||
| 29 | xcopy.cla \ | ||
| 30 | xmainmsg.equ | ||
| 31 | |||
| 32 | xcpyinit.obj: xcpyinit.asm \ | ||
| 33 | makefile \ | ||
| 34 | $(inc)\versiona.inc \ | ||
| 35 | xcopy.equ \ | ||
| 36 | dos.equ \ | ||
| 37 | xinitmsg.equ | ||
| 38 | |||
| 39 | xcopypar.obj: xcopypar.asm \ | ||
| 40 | makefile \ | ||
| 41 | $(inc)\psdata.inc \ | ||
| 42 | $(inc)\parse.asm | ||
| 43 | |||
| 44 | xcopy.exe: xcopy.obj \ | ||
| 45 | makefile \ | ||
| 46 | xcopy.lnk \ | ||
| 47 | xcopypar.obj \ | ||
| 48 | xcpyinit.obj | ||
| 49 | link @xcopy.lnk | ||