summaryrefslogtreecommitdiff
path: root/external/gpl3/gcc/lib/liblto_plugin/Makefile
blob: 52e1ddcc7968843eec1bf809564910e8a13c5307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#	$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