DOS 3.30 source code leak

38 lines
551 B

5 years ago
  1. #** makefile for Boot
  2. DEST = msboot
  3. MSG = messages
  4. # Path definitions
  5. BIOS = ..\..\BIOS
  6. DOS = ..\..\DOS
  7. # Definitions for assembler
  8. ASM = masm
  9. AFLAGS = -Mx -t
  10. AINC = -I..\..\inc
  11. # Definitions for C compiler
  12. CC = cl
  13. CFLAGS = -Ox -Zlp
  14. CINC = -I..\..\h
  15. # Definitions for linker
  16. LINK = link
  17. LIBC = ..\..\libc
  18. # Rules and Dependencies follow
  19. msboot.obj: msboot.asm $(MSG).inc
  20. masm $(AFLAGS) $(AINC) msboot;
  21. msboot.bin: msboot.obj
  22. LINK msboot;
  23. EXE2BIN msboot.exe msboot.bin
  24. DEL msboot.exe
  25. DBOF msboot.bin boot.inc 7C00 200