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/BOOT/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/BOOT/MAKEFILE')
| -rw-r--r-- | v4.0/src/BOOT/MAKEFILE | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/v4.0/src/BOOT/MAKEFILE b/v4.0/src/BOOT/MAKEFILE new file mode 100644 index 0000000..12ac4d8 --- /dev/null +++ b/v4.0/src/BOOT/MAKEFILE | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | #******************** makefile for boot ***************************** | ||
| 2 | |||
| 3 | msg =..\messages | ||
| 4 | dos =..\dos | ||
| 5 | inc =..\inc | ||
| 6 | hinc =..\h | ||
| 7 | |||
| 8 | # | ||
| 9 | #################### dependencies begin here ############################ | ||
| 10 | # | ||
| 11 | |||
| 12 | all: msboot.bin | ||
| 13 | |||
| 14 | boot.cl1: boot.skl \ | ||
| 15 | $(msg)\$(COUNTRY).MSG \ | ||
| 16 | makefile | ||
| 17 | |||
| 18 | msboot.obj: msboot.asm boot.cl1 | ||
| 19 | |||
| 20 | msboot.bin: msboot.obj | ||
| 21 | link msboot; | ||
| 22 | exe2bin msboot.exe msboot.bin | ||
| 23 | dbof msboot.bin boot.inc 7c00 200 | ||
| 24 | copy boot.inc $(inc) | ||
| 25 | del boot.inc | ||