]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/lex/Makefile
This commit was generated by cvs2svn to compensate for changes in r68068,
[FreeBSD/FreeBSD.git] / usr.bin / lex / Makefile
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
12 PROG=           lex
13 LINKS+= ${BINDIR}/lex ${BINDIR}/lex++
14 LINKS+= ${BINDIR}/lex ${BINDIR}/flex
15 LINKS+= ${BINDIR}/lex ${BINDIR}/flex++
16
17 SRCS=           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
19 LFLAGS+=        -is
20 CFLAGS+=        -I. -I${.CURDIR}
21 MAN1=           lex.1
22 MLINKS+=        lex.1 flex.1
23 MLINKS+=        lex.1 flex++.1
24 MLINKS+=        lex.1 lex++.1
25
26 CLEANFILES=     scan.c skel.c
27
28 .if !defined(NOLIB)
29 SUBDIR=         lib
30 .endif
31
32 skel.c: mkskel.sh flex.skl
33         sh ${.CURDIR}/mkskel.sh ${.CURDIR}/flex.skl > skel.c
34
35 beforeinstall:
36         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
37                 ${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++
38
39 bootstrap: initscan.c
40         @cmp -s ${.CURDIR}/initscan.c scan.c || { \
41                 echo "Bootstrapping flex" ; \
42                 rm -f scan.c ; \
43                 cp -f ${.CURDIR}/initscan.c scan.c ; \
44         }
45
46 test: check
47 check: $(PROG)
48         ./$(PROG) $(LFLAGS) -t $(COMPRESSION) $(.CURDIR)/scan.l \
49         | sed s,\"$(.CURDIR)/scan.l",\"scan.l", \
50         | diff $(.CURDIR)/initscan.c -
51         @echo "Check successful"
52
53 .include <bsd.prog.mk>