
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
58 lines
1.2 KiB
Makefile
58 lines
1.2 KiB
Makefile
# $NetBSD: bsd.hostlib.mk,v 1.19 2014/12/01 01:34:30 erh Exp $
|
|
|
|
.include <bsd.init.mk>
|
|
.include <bsd.sys.mk>
|
|
|
|
##### Basic targets
|
|
|
|
##### Default values
|
|
CFLAGS+= ${COPTS}
|
|
MKDEP_SUFFIXES?= .o .lo .d
|
|
|
|
# Override these:
|
|
MKDEP:= ${HOST_MKDEP}
|
|
MKDEPCXX:= ${HOST_MKDEPCXX}
|
|
|
|
.if ${TOOLCHAIN_MISSING} == "no" || defined(EXTERNAL_TOOLCHAIN)
|
|
OBJHOSTMACHINE= # set
|
|
.endif
|
|
|
|
##### Build rules
|
|
.if defined(HOSTLIB)
|
|
_YHLSRCS= ${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
|
|
DPSRCS+= ${_YHLSRCS}
|
|
CLEANFILES+= ${_YHLSRCS}
|
|
.endif # defined(HOSTLIB)
|
|
|
|
.if !empty(SRCS:N*.h:N*.sh)
|
|
OBJS+= ${SRCS:N*.h:N*.sh:R:S/$/.lo/g}
|
|
.endif
|
|
|
|
.if defined(OBJS) && !empty(OBJS)
|
|
.NOPATH: lib${HOSTLIB}.a ${OBJS} ${_YHLSRCS}
|
|
|
|
${OBJS}: ${DPSRCS}
|
|
|
|
lib${HOSTLIB}.a: ${OBJS} ${DPADD}
|
|
${_MKTARGET_BUILD}
|
|
rm -f ${.TARGET}
|
|
${HOST_AR} cq ${.TARGET} ${OBJS}
|
|
${HOST_RANLIB} ${.TARGET}
|
|
|
|
.endif # defined(OBJS) && !empty(OBJS)
|
|
|
|
realall: lib${HOSTLIB}.a
|
|
|
|
CLEANFILES+= a.out [Ee]rrs mklog core *.core lib${HOSTLIB}.a ${OBJS}
|
|
|
|
beforedepend:
|
|
CFLAGS:= ${HOST_CFLAGS}
|
|
CPPFLAGS:= ${HOST_CPPFLAGS}
|
|
|
|
##### Pull in related .mk logic
|
|
.include <bsd.obj.mk>
|
|
.include <bsd.dep.mk>
|
|
.include <bsd.clean.mk>
|
|
|
|
${TARGETS}: # ensure existence
|