mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
- fix some nearby style bugs - include Makefile.inc where it makes sense and reduces duplication Approved by: ed (co-mentor)
13 lines
226 B
Makefile
13 lines
226 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= fwcontrol
|
|
SRCS= fwcontrol.c fwcrom.c fwdv.c fwmpegts.c
|
|
MAN= fwcontrol.8
|
|
WARNS?= 3
|
|
|
|
.PATH: ${.CURDIR}/../../sys/dev/firewire
|
|
|
|
SDIR= ${.CURDIR}/../../sys
|
|
CFLAGS+=-I${.CURDIR} -I${SDIR}
|
|
|
|
.include <bsd.prog.mk>
|