1994-08-22 10:46:38 +00:00
|
|
|
# from: @(#)bsd.subdir.mk 5.9 (Berkeley) 2/1/91
|
1995-03-21 03:59:13 +00:00
|
|
|
# $Id: bsd.port.subdir.mk,v 1.10 1995/03/03 23:30:32 gpalmer Exp $
|
1994-08-22 10:46:38 +00:00
|
|
|
|
|
|
|
.MAIN: all
|
|
|
|
|
1994-09-16 14:30:22 +00:00
|
|
|
.if !defined(DEBUG_FLAGS)
|
1994-08-22 10:46:38 +00:00
|
|
|
STRIP?= -s
|
1994-09-16 14:30:22 +00:00
|
|
|
.endif
|
1994-08-22 10:46:38 +00:00
|
|
|
|
|
|
|
BINGRP?= bin
|
|
|
|
BINOWN?= bin
|
|
|
|
BINMODE?= 555
|
|
|
|
|
1995-03-21 03:59:13 +00:00
|
|
|
ECHO_MSG?= echo
|
|
|
|
|
1994-08-22 10:46:38 +00:00
|
|
|
_SUBDIRUSE: .USE
|
|
|
|
@for entry in ${SUBDIR}; do \
|
1995-03-03 23:30:32 +00:00
|
|
|
OK=""; \
|
|
|
|
for dud in $$DUDS; do \
|
|
|
|
if [ $${dud} = $${entry} ]; then \
|
|
|
|
OK="false"; \
|
1995-03-21 03:59:13 +00:00
|
|
|
${ECHO_MSG} "===> ${DIRPRFX}$${entry} skipped"; \
|
1995-03-03 23:30:32 +00:00
|
|
|
fi; \
|
|
|
|
done; \
|
|
|
|
if [ "$$OK" = "" ]; then \
|
|
|
|
if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \
|
1995-03-21 03:59:13 +00:00
|
|
|
${ECHO_MSG} "===> ${DIRPRFX}$${entry}.${MACHINE}"; \
|
1995-03-03 23:30:32 +00:00
|
|
|
edir=$${entry}.${MACHINE}; \
|
|
|
|
cd ${.CURDIR}/$${edir}; \
|
|
|
|
else \
|
1995-03-21 03:59:13 +00:00
|
|
|
${ECHO_MSG} "===> ${DIRPRFX}$$entry"; \
|
1995-03-03 23:30:32 +00:00
|
|
|
edir=$${entry}; \
|
|
|
|
cd ${.CURDIR}/$${edir}; \
|
|
|
|
fi; \
|
|
|
|
${MAKE} ${.TARGET:realinstall=install} \
|
|
|
|
DIRPRFX=${DIRPRFX}$$edir/; \
|
1994-08-22 10:46:38 +00:00
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
|
|
|
|
${SUBDIR}::
|
|
|
|
@if test -d ${.TARGET}.${MACHINE}; then \
|
|
|
|
cd ${.CURDIR}/${.TARGET}.${MACHINE}; \
|
|
|
|
else \
|
|
|
|
cd ${.CURDIR}/${.TARGET}; \
|
|
|
|
fi; \
|
|
|
|
${MAKE} all
|
|
|
|
|
|
|
|
.if !target(all)
|
|
|
|
all: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
1994-09-14 16:42:37 +00:00
|
|
|
.if !target(fetch)
|
|
|
|
fetch: _SUBDIRUSE
|
1994-08-22 13:02:16 +00:00
|
|
|
.endif
|
|
|
|
|
1995-03-21 03:59:13 +00:00
|
|
|
.if !target(fetch-list)
|
|
|
|
fetch-list: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
1994-09-14 16:42:37 +00:00
|
|
|
.if !target(package)
|
|
|
|
package: _SUBDIRUSE
|
1994-08-22 11:20:07 +00:00
|
|
|
.endif
|
|
|
|
|
1994-08-22 10:46:38 +00:00
|
|
|
.if !target(extract)
|
|
|
|
extract: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(configure)
|
|
|
|
configure: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(build)
|
|
|
|
build: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(clean)
|
|
|
|
clean: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(depend)
|
|
|
|
depend: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
1995-01-03 11:52:01 +00:00
|
|
|
.if !target(describe)
|
|
|
|
describe: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
1994-11-17 16:02:56 +00:00
|
|
|
.if !target(reinstall)
|
|
|
|
reinstall: _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
1994-08-22 10:46:38 +00:00
|
|
|
.if !target(install)
|
|
|
|
.if !target(beforeinstall)
|
|
|
|
beforeinstall:
|
|
|
|
.endif
|
|
|
|
.if !target(afterinstall)
|
|
|
|
afterinstall:
|
|
|
|
.endif
|
|
|
|
install: afterinstall
|
|
|
|
afterinstall: realinstall
|
|
|
|
realinstall: beforeinstall _SUBDIRUSE
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(tags)
|
|
|
|
tags: _SUBDIRUSE
|
|
|
|
.endif
|
1994-12-17 20:50:44 +00:00
|
|
|
|
1995-01-05 01:46:05 +00:00
|
|
|
.if !target(checksum)
|
|
|
|
checksum: _SUBDIRUSE
|
1994-12-17 20:50:44 +00:00
|
|
|
.endif
|