ANSIfication; bug report 4.3BSD/bin/223
[unix-history] / usr / src / old / Makefile
... / ...
CommitLineData
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#
8DESTDIR=
9SUBDIR= man compact
10
11all: ${SUBDIR}
12
13${SUBDIR}: FRC
14 cd $@; make ${MFLAGS}
15
16install: FRC
17 -for i in ${SUBDIR}; do \
18 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
19
20clean: FRC
21 -for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} clean); done
22
23depend:
24 -for i in ${SUBDIR}; do (echo $$i; cd $$i; make ${MFLAGS} depend); done
25
26FRC: