Lionel Sambuc 0a6a1f1d05 NetBSD re-synchronization of the source tree
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
2016-01-13 20:32:14 +01:00

61 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.3 2015/01/07 02:06:23 christos Exp $
.include <bsd.init.mk>
.include <bsd.shlib.mk>
LIB= liblto_plugin
DIST= ${GCCDIST}
GNUHOSTDIST= ${DIST}
SRCS= lto-plugin.c hashtab.c simple-object.c pex-unix.c \
pex-common.c argv.c make-temp-file.c concat.c \
simple-object-elf.c simple-object-mach-o.c \
simple-object-coff.c simple-object-xcoff.c
CPPFLAGS+= -I${DIST}/include -I.
CPPFLAGS+= -DHAVE_CONFIG_H
CPPFLAGS+= -Dxstrdup=strdup -Dxexit=exit
CPPFLAGS+= -Dxcalloc=calloc -Dxmalloc=malloc -Dxrealloc=realloc
LIBISMODULE= 1
USE_SHLIBDIR= yes
REQUIRETOOLS= yes
NOLINT= # defined
# make this /usr/lib/gcc?
LIBDIR= /usr/libexec
.if ${MKGCC} != "no"
SHLIB_MAJOR= 0
SHLIB_MINOR= 0
# Yuck, we have to run configure to generate this one...
CLEANFILES+= config.h
HOST_CFLAGS+= -I${.OBJDIR}
DPSRCS+= config.h
config.h: Makefile
${_MKTARGET_CREATE}
rm -rf .ab && \
mkdir .ab && \
(cd .ab && \
AWK=${TOOL_AWK:Q} \
CC=${HOST_CC:Q} CFLAGS=${HOST_CFLAGS:Q} \
MAKE=${MAKE:Q} \
CONFIG_SHELL=${HOST_SH:Q} \
${HOST_SH} ${DIST}/libiberty/configure \
--build=`${HOST_SH} ${GNUHOSTDIST}/config.guess` \
--host=`${HOST_SH} ${GNUHOSTDIST}/config.guess` \
--target=${MACHINE_GNU_PLATFORM} && \
mv ${.TARGET} ../${.TARGET}) && \
rm -rf .ab
.include <bsd.lib.mk>
.PATH: ${DIST}/lto-plugin ${DIST}/libiberty
.else
.include <bsd.prog.mk> # do nothing
.endif