1996-07-14 11:09:12 +00:00
|
|
|
# $Id: bsd.obj.mk,v 1.6 1996/07/12 06:01:55 pst Exp $
|
1996-04-22 23:31:39 +00:00
|
|
|
#
|
|
|
|
# The include file <bsd.obj.mk> handles creating 'obj' directory
|
|
|
|
# and cleaning up object files, log files etc.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# +++ variables +++
|
|
|
|
#
|
1996-05-27 23:05:54 +00:00
|
|
|
# CLEANFILES Additional files to remove for the clean and cleandir targets.
|
|
|
|
#
|
1996-06-24 04:26:21 +00:00
|
|
|
# MAKEOBJDIR Specify somewhere other than /usr/obj to root the object
|
|
|
|
# tree. Note: MAKEOBJDIR is an *enviroment* variable
|
1996-05-27 23:05:54 +00:00
|
|
|
# and does work proper only if set as enviroment variable,
|
|
|
|
# not as global or command line variable! [obj]
|
|
|
|
#
|
1996-06-24 04:26:21 +00:00
|
|
|
# E.g. use `env MAKEOBJDIR=/somewhere/obj make'
|
1996-04-22 23:31:39 +00:00
|
|
|
#
|
1996-06-24 04:26:21 +00:00
|
|
|
# NOOBJ Do not create build directory in object tree.
|
1996-04-22 23:31:39 +00:00
|
|
|
#
|
1996-06-24 04:26:21 +00:00
|
|
|
# OBJLINK Create a symbolic link from ${.TARGETOBJDIR} to ${.CURDIR}/obj
|
|
|
|
# Note: This BREAKS the read-only src tree rule!
|
1996-04-22 23:31:39 +00:00
|
|
|
#
|
|
|
|
# +++ targets +++
|
|
|
|
#
|
|
|
|
# clean:
|
|
|
|
# remove a.out Errs errs mklog ${CLEANFILES}
|
|
|
|
#
|
|
|
|
# cleandir:
|
1996-06-24 04:26:21 +00:00
|
|
|
# remove the build directory (and all its contents) created by obj
|
1996-04-22 23:31:39 +00:00
|
|
|
#
|
|
|
|
# obj:
|
1996-06-24 04:26:21 +00:00
|
|
|
# create build directory.
|
1996-04-22 23:31:39 +00:00
|
|
|
#
|
1996-03-24 22:49:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
.if !target(obj)
|
|
|
|
.if defined(NOOBJ)
|
|
|
|
obj:
|
|
|
|
.else
|
1996-06-24 04:26:21 +00:00
|
|
|
.if !defined(OBJLINK)
|
|
|
|
obj: _SUBDIR
|
|
|
|
@if ! test -d ${.TARGETOBJDIR}; then \
|
|
|
|
mkdir -p ${.TARGETOBJDIR}; \
|
|
|
|
if ! test -d ${.TARGETOBJDIR}; then \
|
|
|
|
${ECHO} "Unable to create ${.TARGETOBJDIR}."; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
|
|
|
${ECHO} "${.TARGETOBJDIR} created for ${.CURDIR}"; \
|
|
|
|
fi
|
1996-04-22 23:31:39 +00:00
|
|
|
.else
|
1996-06-24 04:26:21 +00:00
|
|
|
obj: _SUBDIR
|
|
|
|
@if ! test -d ${.TARGETOBJDIR}; then \
|
|
|
|
mkdir -p ${.TARGETOBJDIR}; \
|
|
|
|
if ! test -d ${.TARGETOBJDIR}; then \
|
|
|
|
${ECHO} "Unable to create ${.TARGETOBJDIR}."; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
|
|
|
ln -fs ${.TARGETOBJDIR} ${.CURDIR}/obj; \
|
|
|
|
${ECHO} "${.CURDIR} -> ${.TARGETOBJDIR}"; \
|
1996-03-24 22:49:16 +00:00
|
|
|
fi
|
|
|
|
.endif
|
|
|
|
.endif
|
1996-04-22 23:31:39 +00:00
|
|
|
.endif
|
1996-03-24 22:49:16 +00:00
|
|
|
|
1996-06-24 04:26:21 +00:00
|
|
|
.if !target(objlink)
|
|
|
|
objlink: _SUBDIR
|
|
|
|
@if test -d ${.TARGETOBJDIR}; then \
|
|
|
|
ln -fs ${.TARGETOBJDIR} ${.CURDIR}/obj; \
|
|
|
|
else \
|
|
|
|
echo "No ${.TARGETOBJDIR} to link to - do a make obj."; \
|
|
|
|
fi
|
|
|
|
.endif
|
|
|
|
|
1996-07-12 06:01:55 +00:00
|
|
|
#
|
|
|
|
# where would that obj directory be?
|
|
|
|
#
|
|
|
|
.if !target(whereobj)
|
|
|
|
whereobj:
|
|
|
|
.if defined(NOOBJ)
|
|
|
|
@echo ${.CURDIR}
|
|
|
|
.else
|
|
|
|
@if ! test -d ${.TARGETOBJDIR}; then \
|
1996-07-14 11:09:12 +00:00
|
|
|
echo ${.CURDIR}; \
|
|
|
|
else \
|
|
|
|
echo ${.TARGETOBJDIR}; \
|
1996-07-12 06:01:55 +00:00
|
|
|
fi
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
|
1996-04-09 22:43:33 +00:00
|
|
|
#
|
|
|
|
# cleanup
|
|
|
|
#
|
1996-06-24 04:26:21 +00:00
|
|
|
cleanobj:
|
|
|
|
@if [ -d ${.TARGETOBJDIR} ]; then \
|
|
|
|
rm -rf ${.TARGETOBJDIR}; \
|
|
|
|
else \
|
|
|
|
cd ${.CURDIR} && ${MAKE} clean cleandepend; \
|
|
|
|
fi
|
|
|
|
.if defined(OBJLINK)
|
|
|
|
@if [ -h ${.CURDIR}/obj ]; then rm -f ${.CURDIR}/obj; fi
|
|
|
|
.endif
|
1996-04-09 22:43:33 +00:00
|
|
|
|
1996-06-24 04:26:21 +00:00
|
|
|
.if !target(cleanfiles)
|
1996-04-09 22:43:33 +00:00
|
|
|
cleanfiles:
|
|
|
|
rm -f a.out Errs errs mklog ${CLEANFILES}
|
1996-06-24 04:26:21 +00:00
|
|
|
.endif
|
1996-04-09 22:43:33 +00:00
|
|
|
|
|
|
|
# see bsd.dep.mk
|
|
|
|
.if !target(cleandepend)
|
|
|
|
cleandepend:
|
1996-06-24 04:26:21 +00:00
|
|
|
@rm -f .depend
|
1996-04-09 22:43:33 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(clean)
|
1996-06-24 04:26:21 +00:00
|
|
|
clean: cleanfiles _SUBDIR
|
1996-04-09 22:43:33 +00:00
|
|
|
.endif
|
|
|
|
|
1996-06-24 04:26:21 +00:00
|
|
|
cleandir: cleanobj _SUBDIR
|