#       $NetBSD: Makefile.hooks,v 1.4 2023/08/01 05:57:53 mrg Exp $

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

for f in hooks
gen${f}.lo: ${HH} gen${f}.cc ${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