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/DEV/DISPLAY/EGA/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/DEV/DISPLAY/EGA/MAKEFILE')
| -rw-r--r-- | v4.0/src/DEV/DISPLAY/EGA/MAKEFILE | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/v4.0/src/DEV/DISPLAY/EGA/MAKEFILE b/v4.0/src/DEV/DISPLAY/EGA/MAKEFILE new file mode 100644 index 0000000..89319c7 --- /dev/null +++ b/v4.0/src/DEV/DISPLAY/EGA/MAKEFILE | |||
| @@ -0,0 +1,55 @@ | |||
| 1 | #*********************** Makefile for Display\EGA ************************ | ||
| 2 | |||
| 3 | inc =..\..\..\inc | ||
| 4 | dos =..\..\..\dos | ||
| 5 | msg =..\..\..\messages | ||
| 6 | hinc =..\..\..\h | ||
| 7 | |||
| 8 | # | ||
| 9 | ######################## Dependencies begin here ######################### | ||
| 10 | # | ||
| 11 | |||
| 12 | all: ega.cpi | ||
| 13 | |||
| 14 | cpi-head.obj: cpi-head.asm \ | ||
| 15 | makefile | ||
| 16 | |||
| 17 | 437-cpi.obj: 437-cpi.asm \ | ||
| 18 | 437-8x16.asm \ | ||
| 19 | 437-8x14.asm \ | ||
| 20 | makefile \ | ||
| 21 | 437-8x8.asm | ||
| 22 | |||
| 23 | 850-cpi.obj: 850-cpi.asm \ | ||
| 24 | 850-8x16.asm \ | ||
| 25 | 850-8x14.asm \ | ||
| 26 | makefile \ | ||
| 27 | 850-8x8.asm | ||
| 28 | |||
| 29 | 860-cpi.obj: 860-cpi.asm \ | ||
| 30 | 860-8x16.asm \ | ||
| 31 | 860-8x14.asm \ | ||
| 32 | makefile \ | ||
| 33 | 860-8x8.asm | ||
| 34 | |||
| 35 | 863-cpi.obj: 863-cpi.asm \ | ||
| 36 | 863-8x16.asm \ | ||
| 37 | 863-8x14.asm \ | ||
| 38 | makefile \ | ||
| 39 | 863-8x8.asm | ||
| 40 | |||
| 41 | 865-cpi.obj: 865-cpi.asm \ | ||
| 42 | 865-8x16.asm \ | ||
| 43 | 865-8x14.asm \ | ||
| 44 | makefile \ | ||
| 45 | 865-8x8.asm | ||
| 46 | |||
| 47 | copyrigh.obj: copyrigh.asm $(inc)\copyrigh.inc \ | ||
| 48 | makefile | ||
| 49 | |||
| 50 | ega.cpi: cpi-head.obj 437-cpi.obj 850-cpi.obj 860-cpi.obj \ | ||
| 51 | 863-cpi.obj 865-cpi.obj copyrigh.obj makefile ega.lnk \ | ||
| 52 | makefile | ||
| 53 | link @ega.lnk | ||
| 54 | exe2bin cpi-head.exe ega.cpi | ||
| 55 | del cpi-head.exe | ||