29 lines
840 B
Makefile
29 lines
840 B
Makefile
# $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
|