diff options
| author | 2024-04-25 21:24:10 +0100 | |
|---|---|---|
| committer | 2024-04-25 22:32:27 +0000 | |
| commit | 2d04cacc5322951f187bb17e017c12920ac8ebe2 (patch) | |
| tree | 80ee017efa878dfd5344b44249e6a241f2a7f6e2 /v4.0/src/CMD/REPLACE/MAKEFILE | |
| parent | Merge pull request #430 from jpbaltazar/typoptbr (diff) | |
| download | ms-dos-main.tar.gz ms-dos-main.tar.xz ms-dos-main.zip | |
Diffstat (limited to 'v4.0/src/CMD/REPLACE/MAKEFILE')
| -rw-r--r-- | v4.0/src/CMD/REPLACE/MAKEFILE | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/v4.0/src/CMD/REPLACE/MAKEFILE b/v4.0/src/CMD/REPLACE/MAKEFILE new file mode 100644 index 0000000..38ff284 --- /dev/null +++ b/v4.0/src/CMD/REPLACE/MAKEFILE | |||
| @@ -0,0 +1,47 @@ | |||
| 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 | |||
| 14 | all: replace.exe | ||
| 15 | |||
| 16 | replace.ctl: replace.skl \ | ||
| 17 | $(msg)\$(COUNTRY).msg \ | ||
| 18 | makefile | ||
| 19 | |||
| 20 | _msgret.obj: _msgret.asm \ | ||
| 21 | $(inc)\msgserv.asm \ | ||
| 22 | $(inc)\sysmsg.inc \ | ||
| 23 | replace.ctl \ | ||
| 24 | replace.cla \ | ||
| 25 | replace.cl1 \ | ||
| 26 | replace.cl2 \ | ||
| 27 | replace.skl | ||
| 28 | |||
| 29 | _parse.obj: _parse.asm \ | ||
| 30 | $(inc)\parse.asm \ | ||
| 31 | $(inc)\psdata.inc | ||
| 32 | |||
| 33 | _replace.obj: _replace.asm | ||
| 34 | |||
| 35 | replace.obj: replace.c \ | ||
| 36 | makefile \ | ||
| 37 | replacep.h \ | ||
| 38 | $(hinc)\comsub.h | ||
| 39 | |||
| 40 | replace.exe: replace.obj \ | ||
| 41 | _replace.obj \ | ||
| 42 | $(map)\mapper.lib \ | ||
| 43 | $(inc)\comsubs.lib \ | ||
| 44 | _msgret.obj \ | ||
| 45 | _parse.obj \ | ||
| 46 | replace.lnk | ||
| 47 | link @replace.lnk | ||