home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / bin2obj.zip / EXAMPLE.ZIP / EXAMPLE.CMD < prev    next >
OS/2 REXX Batch file  |  1996-03-12  |  244b  |  9 lines

  1. /* example of the use of bin2obj.exe */
  2.  
  3. CC = icc /* the compiler name; it knows how to do compiling and linking */
  4.  
  5. 'bin2obj -n sometext.txt SomeText'
  6. 'bin2obj letters.txt Letters'
  7. CC 'example.c sometext.obj letters.obj'
  8. 'example.exe'
  9.