blob: 1906dbe2b50b03aa565551f9d43b250e1f4ae763 (
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.10 2023/02/20 02:11:03 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
|