1a06a03cb8
Submitted by: Watanabe Kazuhiro <CQG00620@nifty.ne.jp> (mostly)
16 lines
217 B
Makefile
16 lines
217 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../fdread
|
|
|
|
PROG= fdcontrol
|
|
SRCS= fdcontrol.c fdutil.c
|
|
CFLAGS+= -I${.CURDIR}/../fdread
|
|
WARNS?= 2
|
|
MAN= fdcontrol.8
|
|
|
|
.if ${MACHINE} == "pc98"
|
|
CFLAGS+= -DPC98
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|