home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / ntcode / gr564s / makefile < prev    next >
Encoding:
Makefile  |  1995-05-19  |  261 b   |  15 lines

  1. # Master makefile for RCS
  2.  
  3. #    $Id: Makefile,v 1.2 1992/07/28 16:12:44 eggert Exp $
  4.  
  5. MAKE = make
  6. SHELL = /bin/sh
  7.  
  8. SUBDIR=    src man
  9. DESTDIR=
  10.  
  11. all install clean ::
  12.     for i in ${SUBDIR}; do \
  13.         (echo cd $$i && cd $$i && $(MAKE) DESTDIR=${DESTDIR} $@) || exit; \
  14.     done
  15.