summaryrefslogtreecommitdiff
path: root/external/gpl3/gcc/Makefile.hooks
blob: 2d4c8093e214465e5d95706578b60518cfd65fe1 (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
#	$NetBSD: Makefile.hooks,v 1.3 2020/09/05 09:50:15 mrg Exp $

#
# Makefile fragment to build genhooks and *target-hooks*.h
#

.for f in hooks
gen${f}.lo: ${HH} gen${f}.c ${G_D_TARGET_DEF}
gen${f}: gen${f}.lo ${GENPROG_ERROR_DEPENDS} 
	${_MKTARGET_LINK}
	${HOST_LINK.cc} -o ${.TARGET} ${.ALLSRC} ${NBCOMPATLIB} ${HOSTLIBIBERTY} ${LDFLAGS.${.TARGET}}
CLEANFILES+=	genhooks gen${f}.lo
.endfor
CLEANFILES+=	${GENPROG_ERROR_DEPENDS} 

# and now the outputs of genhooks
target-hooks-def.h: genhooks
	./genhooks "Target Hook" >${.TARGET}
c-family/c-target-hooks-def.h: genhooks
	mkdir -p c-family
	./genhooks "C Target Hook" >${.TARGET}
common/common-target-hooks-def.h: genhooks
	mkdir -p common
	./genhooks "Common Target Hook" >${.TARGET}

CLEANFILES+=	target-hooks-def.h \
		c-family/c-target-hooks-def.h \
		common/common-target-hooks-def.h