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

  1. # Tools building Makefile
  2. #
  3. ############################################################
  4. #
  5. # @(#) $Header: /xtel/pp/pp-beta/Tools/RCS/Makefile,v 6.0 1991/12/18 20:35:46 jpo Rel $
  6. #
  7. # $Log: Makefile,v $
  8. # Revision 6.0  1991/12/18  20:35:46  jpo
  9. # Release 6.0
  10. #
  11. #
  12. ############################################################
  13. #
  14. # Definitions
  15. #
  16. ############################################################
  17.  
  18.  
  19.  
  20. SUBDIRS = bin2hex ckadr ckchan ckconfig ckmail  dbmbuild \
  21.     dbmedit dbmunbuild hex2bin mkpasswd mlist mpp84 mpp88 \
  22.     nsapexpand ntail probe splat tables statgen
  23. ALLDIRS = $(SUBDIRS) bin2ascii ckor misc mu ean2real ppls ppbm
  24.  
  25. default: make-bits
  26.  
  27. make-bits:
  28.     @for x in ${SUBDIRS} ; \
  29.     do (echo "cd $$x ; $(MAKE)"; cd $$x ; $(MAKE)); done
  30.  
  31. clean tidy:
  32.     @for x in ${ALLDIRS} ; \
  33.     do (echo "cd $$x ; $(MAKE) $@"; cd $$x ; $(MAKE) $@ ); done
  34.     rm -f core *.old *.BAK
  35.  
  36. depend lint install:
  37.     @for x in ${SUBDIRS} ; \
  38.     do (echo "cd $$x ; $(MAKE) $@"; cd $$x ; $(MAKE) $@ ); done
  39.