Makefile revision 59642
1#	$FreeBSD: head/usr.bin/getconf/Makefile 59642 2000-04-26 07:00:46Z obrien $
2
3PROG=	getconf
4
5SRCS=	confstr.c getconf.c pathconf.c sysconf.c
6CFLAGS+= -I${.CURDIR}
7CLEANFILES+= confstr.c pathconf.c sysconf.c
8
9.SUFFIXES: .gperf
10
11.gperf.c:
12	gperf -t -L ANSI-C -C -k 1,2,7-10,21,'$$' ${.IMPSRC} >${.TARGET}
13
14.include <bsd.prog.mk>
15