64a0982bee
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
30 lines
379 B
Makefile
30 lines
379 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/compat/ndis
|
|
|
|
PROG= ndiscvt
|
|
SRCS= ndiscvt.c
|
|
SRCS+= subr_pe.c
|
|
SRCS+= inf.c inf-token.l inf-parse.y y.tab.h
|
|
|
|
MAN= ndiscvt.8
|
|
MAN+= ndisgen.8
|
|
|
|
WARNS?= 4
|
|
NO_WCAST_ALIGN=
|
|
|
|
LIBADD= l
|
|
|
|
YFLAGS+=-v
|
|
|
|
CFLAGS+=-I. -I${.CURDIR} -I${SRCTOP}/sys
|
|
|
|
CLEANFILES= y.output
|
|
|
|
FILES= windrv_stub.c
|
|
FILESDIR= ${SHAREDIR}/misc
|
|
|
|
SCRIPTS= ndisgen.sh
|
|
|
|
.include <bsd.prog.mk>
|