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

  1. # ==( win/dos/makefile )==
  2.  
  3. # -----------------------------------------------
  4. # Pro-C - Copyright (C) 1988, 1989 Vestronix Inc.
  5. # Modification to this source is not supported
  6. # by Vestronix Inc.
  7. #            All Rights Reserved
  8. # -----------------------------------------------
  9.  
  10. #
  11. # Makefile for Machine Independent source
  12. #
  13. # Written    :    George Long
  14. # Date        :     8-Sep-87
  15. # Modified    :    16-Jun-89
  16. #
  17.  
  18. !include "\make.def"
  19.  
  20. OBJECTS = \
  21.     ds.$(OBJ) \
  22.     inchar.$(OBJ) \
  23.     mouse.$(OBJ) \
  24.     screen.$(OBJ)
  25.  
  26. #----------------------------------------------------------------------------
  27. #    Commands
  28. #----------------------------------------------------------------------------
  29.  
  30. $(LIBE).lib : $(OBJECTS)
  31.     $(TOUCH) $(MAKE_SOUP)
  32.  
  33. clean :
  34.     -$(RM) *.$(OBJ)
  35.     -$(RM) *.err
  36.  
  37. clobber : clean
  38.     -$(RM) *.exe
  39.