home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 125.img / PRO-C4.ZIP / BENCH1.ZIP / MAKEFILE.WB < prev   
Text File  |  1990-05-28  |  899b  |  53 lines

  1. # ==( makefile )==
  2.  
  3. # -----------------------------------------------
  4. # Pro-C  Copyright (C) 1987 - 1990 Vestronix Inc.
  5. # Modification to this source is not supported
  6. # by Vestronix Inc.
  7. #            All Rights Reserved
  8. # -----------------------------------------------
  9. # Written   Geo   8-Sep-87
  10. # Modified  Geo  25-Apr-90  See comments below
  11. # -----------------------------------------------
  12. # %W%  (%H% %T%)
  13.  
  14. #
  15. # Modifications
  16. #
  17. # Modified 25-Apr-90   Geo - New makefiles and first option
  18. # Modified 14-Dec-89   Nig
  19. #
  20.  
  21. !include "\make.def"
  22.  
  23. #
  24. # Proc executables and generator
  25. #
  26. all : libs
  27.  
  28. lib libs : $(LIBE).lib 
  29. souplib support supp soup sup : $(LIBE).lib
  30.  
  31. $(LIBE).lib : $(MAKE_SOUP)
  32.     -$(RM) $(LIBE).lib
  33.     $(AR) $(LIBE) $(AR_SOUP) $(EOL)
  34.  
  35. $(MAKE_SOUP) : soupobjs
  36.  
  37. #
  38. # Support library
  39. #
  40. soupobjs :
  41.     cd bench
  42.     make
  43.     cd ..\help
  44.     make
  45.     cd ..\win
  46.     make
  47.     cd ..\print
  48.     make
  49.     cd ..\gensup
  50.     make
  51.     cd ..
  52.  
  53.