summaryrefslogtreecommitdiffstats
path: root/usr.bin/lex/Makefile
blob: 57e653b13fa3390b32468c407faf31dd52f62a61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# $Id: Makefile,v 1.2 1994/08/27 09:52:30 csgr Exp $
#
# By default, flex will be configured to generate 8-bit scanners only if the
# -8 flag is given.  If you want it to always generate 8-bit scanners, add
# "-DDEFAULT_CSIZE=256" to CFLAGS.  Note that doing so will double the size
# of all uncompressed scanners.
#
# Bootstrapping of lex is handled automatically.
# Also note that flex.skel no longer gets installed.
#

PROG=		lex
LINKS+=	${BINDIR}/lex ${BINDIR}/lex++
LINKS+=	${BINDIR}/lex ${BINDIR}/flex
LINKS+=	${BINDIR}/lex ${BINDIR}/flex++

SRCS=		ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.y \
		skel.c sym.c tblcmp.c yylex.c
OBJS+=		scan.o
LFLAGS+=	-is
CFLAGS+=	-I. -I${.CURDIR}
MAN1=		lex.1 lexdoc.1
MLINKS+=	lex.1 flex.1
MLINKS+=	lex.1 flex++.1
MLINKS+=	lex.1 lex++.1

CLEANFILES+=	parse.c parse.h scan.c y.tab.h y.tab.c


SUBDIR=		lib

beforeinstall:
	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 644 \
		${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++

.depend: parse.h

parse.c parse.h: parse.y
	$(YACC) -d $(.CURDIR)/parse.y
	mv y.tab.c parse.c
	mv y.tab.h parse.h

.if exists(/usr/bin/lex)
scan.o:	parse.c
.else
# We must bootstrap
scan.o: scan.c parse.h

scan.c:
	@echo "Bootstrapping flex"
	@rm -f scan.c
	@cp -pf ${.CURDIR}/initscan.c scan.c
.endif

test: check
check: $(PROG)
	./$(PROG) $(LFLAGS) -t $(COMPRESSION) $(.CURDIR)/scan.l \
	| sed s,\"$(.CURDIR)/scan.l",\"scan.l", \
	| diff $(.CURDIR)/initscan.c -
	@echo "Check successful"

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud