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