home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / me34src.zip / me3 / mutt / Makefile next >
Makefile  |  1995-01-14  |  455b  |  26 lines

  1. all: announce subdirs
  2.  
  3. announce:
  4.     @echo ">>>>>>>>>>>>>>>>Compiling Mutt Code<<<<<<<<<<<<<<<<<<<<<"
  5.  
  6. SUBDIRS = builtin package
  7.  
  8. subdirs:
  9.     for dir in $(SUBDIRS); do \
  10.     (cd $$dir; \
  11.     $(MAKE)    \
  12.     ) \
  13.     done
  14.  
  15. # clean just cleans up objects
  16. clean:
  17.     for dir in $(SUBDIRS); do \
  18.     (cd $$dir; $(MAKE) clean; ) \
  19.     done
  20.  
  21. # realclean cleanup objects, libraries, executables and .mco's
  22. realclean:
  23.     for dir in $(SUBDIRS); do \
  24.     ( cd $$dir; $(MAKE) realclean; ) \
  25.     done
  26.