xref: /freebsd/usr.bin/lex/Makefile (revision 5521ff5a4d1929056e7ffc982fac3341ca54df7c)
1# $FreeBSD$
2#
3# By default, flex will be configured to generate 8-bit scanners only if the
4# -8 flag is given.  If you want it to always generate 8-bit scanners, add
5# "-DDEFAULT_CSIZE=256" to CFLAGS.  Note that doing so will double the size
6# of all uncompressed scanners.
7#
8# Bootstrapping of lex is handled automatically.
9# Also note that flex.skel no longer gets installed.
10#
11
12PROG=		lex
13LINKS+=	${BINDIR}/lex ${BINDIR}/lex++
14LINKS+=	${BINDIR}/lex ${BINDIR}/flex
15LINKS+=	${BINDIR}/lex ${BINDIR}/flex++
16
17SRCS=		scan.c ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.y \
18		skel.c sym.c tblcmp.c yylex.c
19LFLAGS+=	-is
20CFLAGS+=	-I. -I${.CURDIR}
21MLINKS+=	lex.1 flex.1
22MLINKS+=	lex.1 flex++.1
23MLINKS+=	lex.1 lex++.1
24
25CLEANFILES=	scan.c skel.c
26
27.if !defined(NOLIB)
28SUBDIR=		lib
29.endif
30
31skel.c: mkskel.sh flex.skl
32	sh ${.CURDIR}/mkskel.sh ${.CURDIR}/flex.skl > skel.c
33
34beforeinstall:
35	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
36		${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++
37
38bootstrap: initscan.c
39	@cmp -s ${.CURDIR}/initscan.c scan.c || { \
40		echo "Bootstrapping flex" ; \
41		rm -f scan.c ; \
42		cp -f ${.CURDIR}/initscan.c scan.c ; \
43	}
44
45test: check
46check: $(PROG)
47	./$(PROG) $(LFLAGS) -t $(COMPRESSION) $(.CURDIR)/scan.l \
48	| sed s,\"$(.CURDIR)/scan.l",\"scan.l", \
49	| diff $(.CURDIR)/initscan.c -
50	@echo "Check successful"
51
52.include <bsd.prog.mk>
53