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

  1. all: 1 2 3 4
  2.  
  3. 1: l22-1.exe
  4.  
  5. 2: l22-2.exe
  6.  
  7. 3: l22-3.exe
  8.  
  9. 4: l22-4.exe
  10.  
  11. # noehc.lib disables exception handling
  12. # remove the reference if the lib is not available
  13. l22-1.exe: l22-1.c l21-1.c l21-3.c l21-4.c
  14.   bcc -mc -el22-1.exe l21-1.c l21-3.c l21-4.c l22-1.c noehc.lib
  15.  
  16. l22-2.exe: l22-1.c l22-2.c l21-1.c l21-3.c
  17.   bcc -mc -el22-2.exe l21-1.c l21-3.c l22-1.c l22-2.c noehc.lib
  18.  
  19. l22-3.exe: l22-3.asm l22-2.c l21-1.c l21-3.c
  20.   bcc -ms -el22-3.exe l22-3.asm l22-2.c l21-1.c l21-3.c noehs.lib
  21.  
  22. l22-4.exe: l22-4.asm l22-3.asm l21-1.c l21-3.c
  23.   bcc -ms -el22-4.exe l22-4.asm l22-3.asm l21-1.c l21-3.c noehs.lib
  24.