date and time created 82/10/22 18:26:18 by mckusick
[unix-history] / usr / src / Makefile
CommitLineData
9c1744c1
KM
1# @(#)Makefile 4.1 (Berkeley) %G%
2#
3DESTDIR=
4CFLAGS= -O
5
6# Programs that live in subdirectories, and have makefiles of their own.
7#
8SUBDIR= bin etc games lib ucb usr.bin usr.lib local
9
10all: ${SUBDIR}
11
12${SUBDIR}: /tmp
13 cd $@; make ${MFLAGS}
14
15install:
16 for i in ${SUBDIR}; do \
17 (cd $$i; make ${MFLAGS} DESTDIR=${DESTDIR} install); done
18
19clean:
20 rm -f a.out core *.s *.o
21 for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done