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

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