]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/config/Makefile
Implement pci_enable_msi() and pci_disable_msi() in the LinuxKPI.
[FreeBSD/FreeBSD.git] / usr.sbin / config / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 6/6/93
2 # $FreeBSD$
3
4 SRCDIR:=${.PARSEDIR:tA}
5
6 PROG=   config
7 MAN=    config.5 config.8
8 SRCS=   config.y main.c lang.l mkmakefile.c mkheaders.c \
9         mkoptions.c y.tab.h kernconf.c
10
11 FILE2C?=file2c
12
13 kernconf.c: kernconf.tmpl
14         ${FILE2C} 'char kernconfstr[] = {' ',0};' < \
15             ${SRCDIR}/kernconf.tmpl > kernconf.c
16
17 CFLAGS+= -I. -I${SRCDIR}
18
19 NO_WMISSING_VARIABLE_DECLARATIONS=
20
21 LIBADD= l nv sbuf
22
23 CLEANFILES+=    kernconf.c
24
25 mkmakefile.o: configvers.h
26
27 .include <bsd.prog.mk>