home *** CD-ROM | disk | FTP | other *** search
/ Graphics Programming Black Book (Special Edition) / BlackBook.bin / disk1 / source / chapter37 / makefile < prev   
Makefile  |  1997-06-18  |  229b  |  11 lines

  1. # noehs.lib disables exception handling
  2. # remove the reference if the lib is not available
  3. .c.obj:
  4.   bcc -ms -c -w-pro $<
  5.  
  6. .asm.obj:
  7.   tasm /ml $*
  8.  
  9. l15-2.exe: l15-2.obj l16-1.obj
  10.   bcc -ms l16-1.obj l15-2.obj noehs.lib
  11.