xref: /original-bsd/old/Makefile (revision 1db732ef)
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)	12/12/87
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:
27