1# $FreeBSD$ 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