diff options
Diffstat (limited to 'v4.0/src/CMD/EXE2BIN/MAKEFILE')
| -rw-r--r-- | v4.0/src/CMD/EXE2BIN/MAKEFILE | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/v4.0/src/CMD/EXE2BIN/MAKEFILE b/v4.0/src/CMD/EXE2BIN/MAKEFILE new file mode 100644 index 0000000..0c0910b --- /dev/null +++ b/v4.0/src/CMD/EXE2BIN/MAKEFILE | |||
| @@ -0,0 +1,30 @@ | |||
| 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: exe2bin.exe | ||
| 13 | |||
| 14 | exe2bin.ctl : exe2bin.skl makefile \ | ||
| 15 | $(msg)\$(COUNTRY).msg | ||
| 16 | |||
| 17 | e2binit.obj : e2binit.asm $(inc)\syscall.inc e2bparse.inc e2bmacro.inc \ | ||
| 18 | e2bequ.inc $(inc)\sysmsg.inc e2btable.inc exe2bin.ctl \ | ||
| 19 | locate.asm $(inc)\dossym.inc $(inc)\dosmac.inc \ | ||
| 20 | $(inc)\bpb.inc $(inc)\buffer.inc $(inc)\sysvar.inc \ | ||
| 21 | $(inc)\mult.inc $(inc)\dirent.inc $(inc)\dpb.inc \ | ||
| 22 | $(inc)\curdir.inc $(inc)\cpmfcb.inc $(inc)\find.inc \ | ||
| 23 | $(inc)\pdb.inc $(inc)\sf.inc $(inc)\arena.inc $(inc)\intnat.inc \ | ||
| 24 | $(inc)\error.inc $(inc)\syscall.inc $(inc)\parse.asm \ | ||
| 25 | $(inc)\psdata.inc makefile | ||
| 26 | |||
| 27 | display.obj : display.asm makefile | ||
| 28 | |||
| 29 | exe2bin.exe : display.obj e2binit.obj exe2bin.ctl makefile exe2bin.lnk | ||
| 30 | link @exe2bin.lnk | ||