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

  1. # Makefile governing the 'core' pp programs
  2. #
  3. ############################################################
  4. #
  5. # @(#) $Header: /xtel/pp/pp-beta/Src/RCS/Makefile,v 6.0 1991/12/18 20:28:20 jpo Rel $
  6. #
  7. # $Log: Makefile,v $
  8. # Revision 6.0  1991/12/18  20:28:20  jpo
  9. # Release 6.0
  10. #
  11. #
  12. ############################################################
  13. #
  14. # Definitions
  15. #
  16. ############################################################
  17.  
  18.  
  19.  
  20. SUBDIRS = submit qmgr pptsapd MTAconsole LINEconsole lconsole
  21.  
  22. target:
  23.     @for i in ${SUBDIRS} ; \
  24.     do (echo "cd $$i; $(MAKE)"; cd $$i; $(MAKE)); done
  25.  
  26. all define depend clean tidy install lint:
  27.     @for i in ${SUBDIRS} ; \
  28.     do (echo "cd $$i; $(MAKE) $@"; cd $$i; $(MAKE) $@); done
  29.