ANSIfication; bug report 4.3BSD/bin/223
[unix-history] / usr / src / old / Makefile
CommitLineData
449d723d
KB
1#
2# Copyright (c) 1987 Regents of the University of California.
3# All rights reserved. The Berkeley software License Agreement
4# specifies the terms and conditions for redistribution.
5#
6# @(#)Makefile 1.2 (Berkeley) %G%
7#
2bcc3db1 8DESTDIR=
449d723d 9SUBDIR= man compact
2bcc3db1 10
449d723d 11all: ${SUBDIR}
2bcc3db1 12
449d723d
KB
13${SUBDIR}: FRC
14 cd $@; make ${MFLAGS}
2bcc3db1
KB
15
16install: FRC
449d723d
KB
17 -for i in ${SUBDIR}; do \
18 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
2bcc3db1
KB
19
20clean: FRC
449d723d 21 -for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done
2bcc3db1 22
449d723d
KB
23depend:
24 -for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} depend); done
2bcc3db1 25
449d723d 26FRC: