mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
22 lines
632 B
Text
22 lines
632 B
Text
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2025 FreeBSD Foundation
|
|
#
|
|
# This sofware was developed by Cy Schubert <cy@FreeBSD.org>
|
|
# under sponsorship from the FreeBSD Foundation.
|
|
#
|
|
|
|
.et.h:
|
|
rm -f et-h-${.PREFIX}.et et-h-${.PREFIX}.c et-h-${.PREFIX}.h
|
|
cp ${.ALLSRC} et-h-${.PREFIX}.et
|
|
${COMPILE_ET} et-h-${.PREFIX}.et
|
|
mv et-h-${.PREFIX}.h ${.PREFIX}.h
|
|
rm -f et-h-${.PREFIX}.et et-h-${.PREFIX}.h
|
|
|
|
.et.c:
|
|
rm -f et-c-${.PREFIX}.et et-c-${.PREFIX}.c et-c-${.PREFIX}.h
|
|
cp ${.ALLSRC} et-c-${.PREFIX}.et
|
|
${COMPILE_ET} et-c-${.PREFIX}.et
|
|
mv et-c-${.PREFIX}.c ${.PREFIX}.c
|
|
rm -f et-h-${.PREFIX}.et et-h-${.PREFIX}.c
|