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

  1. .c.obj:
  2.   bcc -ms -c -w-pro $<
  3.  
  4. .asm.obj:
  5.   tasm /ml $*
  6.  
  7. all: 1 2
  8.  
  9. 1: l14-2.exe
  10.  
  11. 2: l14-3.exe
  12.  
  13. # noehs.lib disables exception handling
  14. # remove the reference if the lib is not available
  15.  
  16. l14-2.exe: l14-2.obj l14-1.obj
  17.   bcc -ms l14-2.obj l14-1.obj noehs.lib
  18.  
  19. l14-3.exe: l14-2.obj l14-3.obj
  20.   bcc -ms l14-3.obj l14-2.obj noehs.lib
  21.