home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / SLAKWARE / D10 / TOOLS.TGZ / TOOLS.tar / usr / doc / tools-2.17 / Makefile < prev    next >
Makefile  |  1994-09-11  |  367b  |  25 lines

  1.  
  2. DIRS = tools example doc
  3.  
  4. INSTALL_DIRS = tools
  5.  
  6. all:
  7.     for i in $(DIRS); do \
  8.         (cd $$i && make); \
  9.     done
  10.  
  11. clean:
  12.     rm -f *~ \#*\#
  13.     for i in $(DIRS); do \
  14.         (cd $$i && make clean); \
  15.     done
  16.  
  17. dist:    clean
  18.     (mydir=`basename \`pwd\``;\
  19.     cd .. && tar cvvf - $$mydir | gzip -9 > $${mydir}.tar.gz)
  20.  
  21. install:
  22.     for i in $(INSTALL_DIRS); do \
  23.         (cd $$i && make install); \
  24.     done
  25.