home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Makefiles / lib / Makefile.clean < prev    next >
Encoding:
Makefile  |  1994-01-06  |  392 b   |  18 lines

  1. # Makefile.clean
  2. #
  3. # by Mike Ferris
  4. # Part of MOKit
  5. # Copyright 1993, all rights reserved
  6. #
  7. # Used in the MiscKit by permission.
  8. #
  9. # This is based on Next's standard library make architecture
  10.  
  11. ##################### Cleaning rules #####################
  12.  
  13. clean::
  14.     -$(RM) -f $(OFILES) $(COMMON_GARBAGE) $(SPECIFIC_GARBAGE) $(PRODUCT)
  15.     -$(RM) -rf $(DIRECTORY_GARBAGE)
  16.     $(TOUCH) Makefile.depends
  17.  
  18.