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