home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-19 | 261 b | 15 lines |
- # Master makefile for RCS
-
- # $Id: Makefile,v 1.2 1992/07/28 16:12:44 eggert Exp $
-
- MAKE = make
- SHELL = /bin/sh
-
- SUBDIR= src man
- DESTDIR=
-
- all install clean ::
- for i in ${SUBDIR}; do \
- (echo cd $$i && cd $$i && $(MAKE) DESTDIR=${DESTDIR} $@) || exit; \
- done
-