minix/share/mk/bsd.obj.mk
Lionel Sambuc 9152e1c5a7 Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
 * tools
 * distribution
 * sets
 * release

The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.

For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.

Regarding new or modifications of Makefiles a few things:
 * Read share/mk/bsd.README
 * If you add a subdirectory, add a Makefile in it, and have it called
   by the parent through the SUBDIR variable.
 * Do not add arbitrary inclusion which crosses to another branch of
   the hierarchy; If you can't do without it, put a comment on why.
   If possible, do not use inclusion at all.
 * Use as much as possible the infrastructure, it is here to make
   life easier, do not fight it.

Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-11-15 16:07:29 +01:00

110 lines
2.6 KiB
Makefile

# $NetBSD: bsd.obj.mk,v 1.49 2010/01/25 00:43:00 christos Exp $
.if !defined(_BSD_OBJ_MK_)
_BSD_OBJ_MK_=1
.include <bsd.own.mk>
__curdir:= ${.CURDIR}
.if ${MKOBJ} == "no"
obj:
.else
.if defined(MAKEOBJDIRPREFIX) || defined(MAKEOBJDIR)
.if defined(MAKEOBJDIRPREFIX)
__objdir:= ${MAKEOBJDIRPREFIX}${__curdir}
.else
__objdir:= ${MAKEOBJDIR}
.endif
# MAKEOBJDIR and MAKEOBJDIRPREFIX are env variables supported
# by make(1). We simply mkdir -p the specified path.
# If that fails - we do a mkdir to get the appropriate error message
# before bailing out.
obj:
.if defined(MAKEOBJDIRPREFIX)
@if [ ! -d ${MAKEOBJDIRPREFIX} ]; then \
echo "MAKEOBJDIRPREFIX ${MAKEOBJDIRPREFIX} does not exist, bailing..."; \
exit 1; \
fi;
.endif
@if [ ! -d ${__objdir} ]; then \
mkdir -p ${__objdir}; \
if [ ! -d ${__objdir} ]; then \
mkdir ${__objdir}; exit 1; \
fi; \
${_MKSHMSG} " objdir ${__objdir}"; \
fi
.else
PAWD?= /bin/pwd
__objdir= obj${OBJMACHINE:D.${MACHINE}}
__usrobjdir= ${BSDOBJDIR}${USR_OBJMACHINE:D.${MACHINE}}
__usrobjdirpf= ${USR_OBJMACHINE:D:U${OBJMACHINE:D.${MACHINE}}}
.if defined(BUILDID)
__objdir:= ${__objdir}.${BUILDID}
__usrobjdirpf:= ${__usrobjdirpf}.${BUILDID}
__need_objdir_target=yes
.endif
.if defined(OBJHOSTMACHINE) && (${MKHOSTOBJ:Uno} != "no")
# In case .CURDIR has been twiddled by a .mk file and is now relative,
# make it absolute again.
.if ${__curdir:M/*} == ""
__curdir!= cd "${__curdir}" && ${PAWD}
.endif
__objdir:= ${__objdir}.${HOST_OSTYPE}
__usrobjdirpf:= ${__usrobjdirpf}.${HOST_OSTYPE}
__need_objdir_target=yes
.endif
.if defined(__need_objdir_target)
# Get make to change its internal definition of .OBJDIR
.OBJDIR: ${__objdir}
.endif
obj:
@cd "${__curdir}"; \
here=`${PAWD}`/; subdir=$${here#${BSDSRCDIR}/}; \
if [ "$$here" != "$$subdir" ]; then \
if [ ! -d ${__usrobjdir} ]; then \
echo "BSDOBJDIR ${__usrobjdir} does not exist, bailing..."; \
exit 1; \
fi; \
subdir=$${subdir%/}; \
dest=${__usrobjdir}/$$subdir${__usrobjdirpf}; \
if [ -x ${TOOL_STAT} ] && \
ttarg=`${TOOL_STAT} -qf '%Y' $${here}${__objdir}` && \
[ "$$dest" = "$$ttarg" ]; then \
: ; \
else \
${_MKSHMSG} " objdir $$dest"; \
rm -rf ${__objdir}; \
ln -s $$dest ${__objdir}; \
fi; \
if [ ! -d $$dest ]; then \
mkdir -p $$dest; \
else \
true; \
fi; \
else \
true ; \
dest=$${here}${__objdir} ; \
if [ ! -d ${__objdir} ] || [ -h ${__objdir} ]; then \
${_MKSHMSG} " objdir $$dest"; \
rm -f ${__objdir}; \
mkdir $$dest; \
fi ; \
fi;
.endif
.endif
print-objdir:
@echo ${.OBJDIR}
.include <bsd.sys.mk>
.endif # !defined(_BSD_OBJ_MK_)