xref: /freebsd/usr.bin/getconf/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
120d90b10SEnji Cooper.include <src.opts.mk>
220d90b10SEnji Cooper
38c6bd995SGarrett WollmanPROG=	getconf
48c6bd995SGarrett Wollman
5*0840e619SGarrett WollmanSRCS=	confstr.c getconf.c limits.c pathconf.c progenv.c sysconf.c \
6*0840e619SGarrett Wollman	unsigned_limits.c
7b0c6f4cfSDavid E. O'BrienCFLAGS+= -I${.CURDIR}
8e9cfb9aeSGarrett WollmanCLEANFILES+=	confstr.c limits.c pathconf.c progenv.c sysconf.c \
9e9cfb9aeSGarrett Wollman		confstr.names limits.names pathconf.names sysconf.names \
10*0840e619SGarrett Wollman		conflicting.names unique.names unsigned_limits.names
118c6bd995SGarrett Wollman
12e9cfb9aeSGarrett Wollman.SUFFIXES: .gperf .names
13e9cfb9aeSGarrett Wollman.PHONY: conflicts
14e9cfb9aeSGarrett Wollman
15e9cfb9aeSGarrett Wollmanall:	conflicts
168c6bd995SGarrett Wollman
17ea642042SEnji CooperFAKE_GPERF=	${.CURDIR}/fake-gperf.awk
18ea642042SEnji Cooper.gperf.c: ${FAKE_GPERF}
19ea642042SEnji Cooper	LC_ALL=C awk -f ${FAKE_GPERF} ${.IMPSRC} >${.TARGET}
20e9cfb9aeSGarrett Wollman
21e9cfb9aeSGarrett Wollman.gperf.names:
229891836bSRuslan Ermilov	LC_ALL=C awk '/^[_A-Z]/ { print; }' ${.IMPSRC} | \
239891836bSRuslan Ermilov	    sed -e 's/,$$//' >${.TARGET}
24e9cfb9aeSGarrett Wollman
25e9cfb9aeSGarrett Wollmanconflicts: conflicting.names unique.names
26e9cfb9aeSGarrett Wollman	@if test `wc -l <conflicting.names` != `wc -l <unique.names`; then \
27e9cfb9aeSGarrett Wollman		echo "Name conflicts found!" >&2; \
28e9cfb9aeSGarrett Wollman		exit 1; \
29e9cfb9aeSGarrett Wollman	fi
30e9cfb9aeSGarrett Wollman
31e9cfb9aeSGarrett Wollman# pathconf.names is not included here because pathconf names are
32e9cfb9aeSGarrett Wollman# syntactically distinct from the other kinds.
33e9cfb9aeSGarrett Wollmanconflicting.names:	confstr.names limits.names sysconf.names
34e9cfb9aeSGarrett Wollman	cat ${.ALLSRC} >${.TARGET}
35e9cfb9aeSGarrett Wollman
36e9cfb9aeSGarrett Wollmanunique.names:		conflicting.names
379891836bSRuslan Ermilov	LC_ALL=C sort -u ${.ALLSRC} >${.TARGET}
388c6bd995SGarrett Wollman
39d511b20aSEnji CooperHAS_TESTS=
404b330699SEnji CooperSUBDIR.${MK_TESTS}+= tests
4120d90b10SEnji Cooper
428c6bd995SGarrett Wollman.include <bsd.prog.mk>
43