minix/sys/arch/i386/stand/lib/Makefile.inc
Lionel Sambuc 84d9c625bf Synchronize on NetBSD-CVS (2013/12/1 12:00:00 UTC)
- 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
2014-07-28 17:05:06 +02:00

60 lines
1.8 KiB
Makefile

# $NetBSD: Makefile.inc,v 1.14 2011/05/26 12:56:30 joerg Exp $
#
# Configuration variables (default values are below):
#
# S must be set to the top of the 'sys' tree.
# I386DST may be set to the location of the directory where library
# objects are to be built. Defaults to ${.OBJDIR}/lib/i386.
# I386MISCCPPFLAGS
# Miscellaneous cpp flags to be passed to the library's Makefile
# when building.
# I386MISCMAKEFLAGS
# Miscellaneous flags to be passed to the library's Makefile when
# building. See library's Makefile for more details about
# supported flags and their default values.
.if defined(__MINIX)
USE_BITCODE=no
.endif # defined(__MINIX)
# Default values:
I386DST?= ${.OBJDIR}/lib/i386
#I386DIR= $S/arch/i386/stand/lib
I386LIB= ${I386DST}/libi386.a
CWARNFLAGS.clang+= -Wno-tautological-compare
I386MAKE= \
cd ${I386DIR} && MAKEOBJDIRPREFIX= && unset MAKEOBJDIRPREFIX && \
MAKEOBJDIR=${I386DST} ${MAKE} \
CC=${CC:Q} CFLAGS=${CFLAGS:Q} \
AS=${AS:Q} AFLAGS=${AFLAGS:Q} \
LD=${LD:Q} STRIP=${STRIP:Q} \
MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH:Q} \
I386CPPFLAGS=${CPPFLAGS:S@^-I.@-I../../.@g:Q} \
I386MISCCPPFLAGS=${I386MISCCPPFLAGS:Q} \
${I386MISCMAKEFLAGS}
${I386LIB}: .NOTMAIN __always_make_i386lib
@echo making sure the i386 library is up to date...
@${I386MAKE} libi386.a
clean: .NOTMAIN cleani386lib
cleani386lib: .NOTMAIN
@echo cleaning the i386 library objects
@if [ -d "${I386DST}" ]; then ${I386MAKE} clean; fi
cleandir distclean: .NOTMAIN cleandiri386lib
cleandiri386lib: .NOTMAIN
@echo cleandiring the i386 library objects
@if [ -d "${I386DST}" ]; then ${I386MAKE} cleandir; fi
dependall depend: .NOTMAIN dependi386lib
dependi386lib: .NOTMAIN __always_make_i386lib
@echo depending the i386 library objects
@${I386MAKE} depend
__always_make_i386lib: .NOTMAIN
@mkdir -p ${I386DST}