home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pctchnqs / 1991 / number6 / bitvect / makefile < prev    next >
Makefile  |  1991-11-18  |  358b  |  19 lines

  1. # Listing 4.  Makefile for bit vector demonstration programs.
  2. # Copyright (C) 1991 by Nicholas Wilt.    All rights reserved.
  3.  
  4. # Implicit rules.
  5. .cpp.obj:
  6.     bcc -v -c $<
  7.  
  8. .c.obj:
  9.     bcc -v -c $<
  10.  
  11. # Explicit rules.
  12. all: sets.exe
  13.  
  14. sets.exe: sets.obj bitvect.obj
  15.     tlink /v c0s sets bitvect,sets,,maths cs
  16.  
  17. bitvect.obj: bitvect.h
  18. sets.obj: bitvect.h
  19.