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

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