]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/devd/Makefile
Remove spurious newline
[FreeBSD/FreeBSD.git] / sbin / devd / Makefile
1 # $FreeBSD$
2
3 .include <src.opts.mk>
4
5 WARNS?= 3
6 PACKAGE=runtime
7 CONFGROUPS=     CONFS DEVD
8 CONFS=  devd.conf
9 DEVD=   devmatch.conf
10 DEVDDIR=        /etc/devd
11 .if ${MK_ACPI} != "no"
12 DEVD+=  asus.conf
13 .endif
14
15 .if ${MK_HYPERV} != "no"
16 DEVD+=  hyperv.conf
17 .endif
18
19 .if ${MK_USB} != "no"
20 DEVD+=  uath.conf ulpt.conf
21 .endif
22
23 .if ${MACHINE_ARCH} == "powerpc"
24 DEVD+=  apple.conf
25 .endif
26
27 .if ${MK_ZFS} != "no"
28 DEVD+=  zfs.conf
29 .endif
30
31 PROG_CXX=devd
32 SRCS=   devd.cc token.l parse.y y.tab.h
33 MAN=    devd.8 devd.conf.5
34
35 NO_SHARED?=YES
36
37 LIBADD= l util
38
39 YFLAGS+=-v
40 CFLAGS+=-I. -I${.CURDIR}
41 CFLAGS.clang += -Wno-missing-variable-declarations
42 CFLAGS.gcc = -Wno-redundant-decls
43 CXXFLAGS.gcc = -Wno-redundant-decls
44
45 CLEANFILES= y.output y.tab.i
46
47 HAS_TESTS=
48 SUBDIR.${MK_TESTS}+= tests
49
50 .include <bsd.prog.mk>