
* Updating common/lib * Updating lib/csu * Updating lib/libc * Updating libexec/ld.elf_so * Corrected test on __minix in featuretest to actually follow the meaning of the comment. * Cleaned up _REENTRANT-related defintions. * Disabled -D_REENTRANT for libfetch * Removing some unneeded __NBSD_LIBC defines and tests Change-Id: Ic1394baef74d11b9f86b312f5ff4bbc3cbf72ce2
26 lines
537 B
Makefile
26 lines
537 B
Makefile
# rts sources
|
|
HERE=${.CURDIR}/arch/${MACHINE_ARCH}/sys-minix
|
|
.PATH: ${HERE}
|
|
|
|
ARCHINCLS=${NETBSDSRCDIR}/include/arch/${MACHINE_ARCH}/include/
|
|
TMP=ucontextoffsets.h.tmp
|
|
CF=ucontextoffsets.cf
|
|
|
|
INCS+=ucontextoffsets.h
|
|
|
|
ucontext.d: ucontextoffsets.h
|
|
|
|
SRCS+= \
|
|
__sigreturn.S \
|
|
_ipc.S \
|
|
_senda.S \
|
|
brksize.S \
|
|
ucontext.S
|
|
|
|
ucontextoffsets.h: ${CF} ${ARCHINCLS}/stackframe.h ${NETBSDSRCDIR}/sys/sys/ucontext.h
|
|
${_MKTARGET_CREATE}
|
|
cat ${HERE}/$(CF) | \
|
|
${TOOL_GENASSYM} -- ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} >$TMP && \
|
|
mv -f $TMP $@
|
|
|