home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / PROCWRKB.ZIP / BENCH1.ZIP / HELP / MAKEFILE < prev    next >
Encoding:
Text File  |  1990-08-07  |  1.1 KB  |  51 lines

  1. # ==( help/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  11-Dec-89  See comments below
  11. # -----------------------------------------------
  12. # %W%  (%H% %T%)
  13.  
  14. #
  15. # Modifications
  16. #
  17. # 11-Dec-89  Geo - V2 version
  18. # 25-Oct-89  Geo - 1.32 Merge
  19. #
  20.  
  21. !include "\make.def"
  22.  
  23. OBJECTS    = \
  24.     callhelp.$(OBJ) \
  25.     change.$(OBJ) \
  26.     display.$(OBJ) \
  27.     edit.$(OBJ) \
  28.     garbage.$(OBJ) \
  29.     help.$(OBJ) \
  30.     helpfunc.$(OBJ) \
  31.     helpmisc.$(OBJ) \
  32.     helpmsg.$(OBJ) \
  33.     popup.$(OBJ) \
  34.     rwi.$(OBJ) \
  35.     rwt.$(OBJ) \
  36.     setup.$(OBJ)
  37.  
  38. #----------------------------------------------------------------------------
  39. #    Commands
  40. #----------------------------------------------------------------------------
  41.  
  42. $(LIBE).lib : $(OBJECTS)
  43.     $(TOUCH) $(MAKE_SOUP)
  44.  
  45. clean :
  46.     -$(RM) *.$(OBJ)
  47.     -$(RM) *.ndx
  48.     -$(RM) *.tdx
  49.  
  50. clobber : clean
  51.