home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / FIDO / MSGD2SRC.ZIP / OS2.ZIP / README.OS2 < prev    next >
Encoding:
Text File  |  1990-08-12  |  1003 b   |  32 lines

  1. The OS/2 version of msged (msgedp.exe) is produced with IBM C/2 1.1, its
  2. MAKE/2 utility, and IBM MASM/2.  Their Microsoft counterparts are roughly
  3. MS C 5.2 and MASM 5.0, but the MAKE really is unique.  I'm going to be
  4. converting over these projects to PAMAKE18 as each starts back up, to
  5. get around this small problem.
  6.  
  7. Anyway, the unique OS/2 files for msged are:
  8.  
  9. OS2SUPP.H
  10. SCRNOS2.C
  11. NORMAL2.ASM
  12. MAKEFILE.OS2
  13. MAKEFILE.DBG
  14.  
  15. The batch file I use to build either version of msged is:
  16.  
  17. @Echo off
  18. Set DEBUG=.OS2
  19. if %1x==debugx Set DEBUG=.DBG
  20. if %1x==dosx Set DEBUG=.DOS
  21. if %1x==debugx Shift
  22. if %1x==dosx Shift
  23. if %1x==allx if exist *.obj del *.obj >nul:
  24. if %1x==allx Shift
  25. make %1 %2 %3 /f makefile%DEBUG%
  26.  
  27. Until there is an equivalent to the Clarkson Spelling Checker in the OS/2 world,
  28. probably in a DLL, the spelling check stuff is disabled in the OS/2 version.
  29.  
  30.                                            Bill Andrus
  31.                                            1:109/301
  32.