84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
48 lines
970 B
PHP
48 lines
970 B
PHP
########################################################################
|
|
#
|
|
# Shared libc with userspace (/common/lib/libc)
|
|
#
|
|
.for f in \
|
|
strlcpy.o strncpy.o
|
|
${f}: ${LIBCOMMONCDIR}/string/${f:C/\.o/.c/}
|
|
OBJS+= ${f}
|
|
CLEANFILES+= ${f}
|
|
.endfor
|
|
|
|
CPPFLAGS.strlcpy.c+= -D_LIBC
|
|
|
|
.for f in \
|
|
byte_swap_2.o byte_swap_4.o
|
|
${f}: ${LIBCOMMONCARCHDIR}/gen/${f:C/\.o/.S/}
|
|
OBJS+= ${f}
|
|
CLEANFILES+= ${f}
|
|
.endfor
|
|
|
|
CPPFLAGS.byte_swap_4.S+= -D_STANDALONE
|
|
|
|
.for f in \
|
|
memchr.o memcmp.o memcpy.o memmove.o memset.o \
|
|
strcat.o strchr.o strcmp.o strcpy.o strlen.o \
|
|
strrchr.o
|
|
${f}: ${LIBCOMMONCARCHDIR}/string/${f:C/\.o/.S/}
|
|
OBJS+= ${f}
|
|
CLEANFILES+= ${f}
|
|
.endfor
|
|
|
|
########################################################################
|
|
#
|
|
# Functions imported directly from libc.
|
|
#
|
|
.for f in \
|
|
alloca.o
|
|
${f}: ${LIBCARCHDIR}/gen/${f:C/\.o/.S/}
|
|
OBJS+= ${f}
|
|
CLEANFILES+= ${f}
|
|
.endfor
|
|
|
|
.for f in \
|
|
strncmp.o
|
|
${f}: ${LIBCARCHDIR}/string/${f:C/\.o/.S/}
|
|
OBJS+= ${f}
|
|
CLEANFILES+= ${f}
|
|
.endfor
|