1# 2# SPDX-License-Identifier: BSD-2-Clause 3# 4# Copyright (c) 2025 FreeBSD Foundation 5# 6# This sofware was developed by Cy Schubert <cy@FreeBSD.org> 7# under sponsorship from the FreeBSD Foundation. 8# 9 10.et.h: 11 rm -f et-h-${.PREFIX}.et et-h-${.PREFIX}.c et-h-${.PREFIX}.h 12 cp ${.ALLSRC} et-h-${.PREFIX}.et 13 ${COMPILE_ET} et-h-${.PREFIX}.et 14 mv et-h-${.PREFIX}.h ${.PREFIX}.h 15 rm -f et-h-${.PREFIX}.et et-h-${.PREFIX}.h 16 17.et.c: 18 rm -f et-c-${.PREFIX}.et et-c-${.PREFIX}.c et-c-${.PREFIX}.h 19 cp ${.ALLSRC} et-c-${.PREFIX}.et 20 ${COMPILE_ET} et-c-${.PREFIX}.et 21 mv et-c-${.PREFIX}.c ${.PREFIX}.c 22 rm -f et-h-${.PREFIX}.et et-h-${.PREFIX}.c 23