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