1994-08-04 21:09:27 +00:00
|
|
|
# from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91
|
1997-01-14 07:20:47 +00:00
|
|
|
# $FreeBSD$
|
1994-05-30 19:09:18 +00:00
|
|
|
|
|
|
|
.MAIN: all
|
|
|
|
|
|
|
|
_SUBDIRUSE: .USE
|
|
|
|
@for entry in ${SUBDIR}; do \
|
|
|
|
(if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \
|
1994-08-28 15:35:30 +00:00
|
|
|
${ECHODIR} "===> ${DIRPRFX}$${entry}.${MACHINE}"; \
|
1994-08-04 21:09:27 +00:00
|
|
|
edir=$${entry}.${MACHINE}; \
|
|
|
|
cd ${.CURDIR}/$${edir}; \
|
1994-05-30 19:09:18 +00:00
|
|
|
else \
|
1994-08-28 15:35:30 +00:00
|
|
|
${ECHODIR} "===> ${DIRPRFX}$$entry"; \
|
1994-08-04 21:09:27 +00:00
|
|
|
edir=$${entry}; \
|
|
|
|
cd ${.CURDIR}/$${edir}; \
|
1994-05-30 19:09:18 +00:00
|
|
|
fi; \
|
1994-08-04 21:09:27 +00:00
|
|
|
${MAKE} ${.TARGET:realinstall=install} DIRPRFX=${DIRPRFX}$$edir/); \
|
1994-05-30 19:09:18 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
${SUBDIR}::
|
|
|
|
@if test -d ${.TARGET}.${MACHINE}; then \
|
|
|
|
cd ${.CURDIR}/${.TARGET}.${MACHINE}; \
|
|
|
|
else \
|
|
|
|
cd ${.CURDIR}/${.TARGET}; \
|
|
|
|
fi; \
|
|
|
|
${MAKE} all
|
|
|
|
|
|
|
|
|
1996-09-20 16:17:07 +00:00
|
|
|
.for __target in all checkdpadd clean cleandepend cleandir depend lint \
|
|
|
|
maninstall obj objlink tags
|
1996-04-05 22:22:44 +00:00
|
|
|
.if !target(__target)
|
|
|
|
${__target}: _SUBDIRUSE
|
1994-11-13 21:05:28 +00:00
|
|
|
.endif
|
1996-04-05 22:22:44 +00:00
|
|
|
.endfor
|
1994-11-13 21:05:28 +00:00
|
|
|
|
1994-05-30 19:09:18 +00:00
|
|
|
.if !target(install)
|
|
|
|
.if !target(beforeinstall)
|
|
|
|
beforeinstall:
|
|
|
|
.endif
|
|
|
|
.if !target(afterinstall)
|
|
|
|
afterinstall:
|
|
|
|
.endif
|
|
|
|
install: afterinstall
|
|
|
|
afterinstall: realinstall
|
|
|
|
realinstall: beforeinstall _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
1996-04-05 22:22:44 +00:00
|
|
|
DISTRIBUTION?= bin
|
|
|
|
.if !target(afterdistribute)
|
|
|
|
afterdistribute:
|
1994-05-30 19:09:18 +00:00
|
|
|
.endif
|
1996-04-05 22:22:44 +00:00
|
|
|
.if !target(distribute)
|
|
|
|
distribute: _SUBDIRUSE
|
|
|
|
cd ${.CURDIR} ; ${MAKE} afterdistribute DESTDIR=${DISTDIR}/${DISTRIBUTION}
|
1994-05-30 19:09:18 +00:00
|
|
|
.endif
|