freebsd-src/tools/kerneldoc/Makefile
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
This is a residual of the $FreeBSD$ removal.

MFC After: 3 days (though I'll just run the command on the branches)
Sponsored by: Netflix
2024-07-15 16:43:39 -06:00

29 lines
436 B
Makefile

.PATH: ${.CURDIR}/../kern
SRCS+= kern
SRCS+= sys
MFILES+= device_if.m
MFILES+= bus_if.m
all: ${MFILES:T:S/.m/.h/} ${SRCS}
doxygen
LN?= ln
AWK?= awk
S?= ${.CURDIR}/..
CLEANFILES+= ${SRCS}
.for dir in ${SRCS}
${dir}:
${LN} -sf ${.CURDIR}/../${dir} .
.endfor
.for mfile in ${MFILES}
CLEANFILES+= ${mfile:T:S/.m$/.h/}
${mfile:T:S/.m$/.h/}: ${mfile}
${AWK} -f $S/tools/makeobjops.awk $> -h
.endfor
clean::
rm -f ${CLEANFILES}