home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pp / pp-6.0 / Format / Makefile < prev    next >
Encoding:
Makefile  |  1991-12-18  |  1.1 KB  |  47 lines

  1. # Preliminary comments
  2. #
  3. ############################################################
  4. #
  5. # @(#) $Header: /xtel/pp/pp-beta/Format/RCS/Makefile,v 6.0 1991/12/18 20:15:10 jpo Rel $
  6. #
  7. # $Log: Makefile,v $
  8. # Revision 6.0  1991/12/18  20:15:10  jpo
  9. # Release 6.0
  10. #
  11. #
  12. ############################################################
  13. #
  14. # Definitions
  15. #
  16. ############################################################
  17.  
  18.  
  19.  
  20. SUBDIRS = p2explode p2flatten rfc1148 rfc822norm p2norm rfc934 $(OPTIONALFILTERS)
  21.  
  22. ALLDIRS = $(SUBDIRS) ascii2fax asn charset
  23.  
  24. ############################################################
  25. #
  26. # Building Rules
  27. #
  28. ############################################################
  29.  
  30. target:
  31.     @for i in ${SUBDIRS} ; \
  32.     do (echo "cd $$i; $(MAKE)"; cd $$i; $(MAKE)); done
  33.  
  34. install define lint:
  35.     @for i in ${SUBDIRS} ; \
  36.     do (echo "cd $$i; $(MAKE) $@"; cd $$i; $(MAKE) $@); done
  37.  
  38. clean tidy depend:
  39.     @for i in $(ALLDIRS); \
  40.     do (echo "cd $$i; $(MAKE) $@"; cd $$i; $(MAKE) $@); done
  41.  
  42. ############################################################
  43. #
  44. # End of Building Rules
  45. #
  46. ############################################################
  47.