home *** CD-ROM | disk | FTP | other *** search
/ Graphics Programming Black Book (Special Edition) / BlackBook.bin / disk1 / source / chapter32 / makefile < prev   
Encoding:
Makefile  |  1997-06-18  |  229 b   |  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. l10-2.exe: l10-2.obj l10-1.obj
  10.   bcc -ms l10-2.obj l10-1.obj noehs.lib
  11.