home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a063 / 6.img / SAMPLE / APTFORMS / MAKESALE.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-03-22  |  1.2 KB  |  26 lines

  1. @echo off
  2.  
  3. rem Compile the source modules.
  4. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. adisc.c
  5. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. clcst.c
  6. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. clrfd.c
  7. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. dscin.c
  8. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. errhndlr.c
  9. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. gthdr.c
  10. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. inval.c
  11. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. msghndlr.c
  12. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. print.c
  13. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. rgdsc.c
  14. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. se_main.c
  15. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. strin.c
  16. cl /c /AL /Gs /w /DAPTLIB /DDBMSDOS /I..\..\include /I. titin.c
  17.  
  18. rem Link the obj's and libraries.
  19. link @sales.lnk
  20.  
  21. rem Convert the real mode executable to a protected mode executable.
  22. makepm -Q sales.exe
  23.  
  24. rem Combine the executable with Rational's loader the necessary packages.
  25. splice -Q sales.exe int10.exp mouse33.exp emineti.exp sales.exp loader.exe
  26.