mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Do not install as flex
Submitted by: Geoff
This commit is contained in:
parent
ef17cd2157
commit
c5e63f9aec
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2307
3 changed files with 4050 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
# $Id$
|
||||
# $Id: Makefile,v 1.1.1.1 1994/08/24 13:10:33 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
|
||||
|
@ -6,13 +6,12 @@
|
|||
# of all uncompressed scanners.
|
||||
#
|
||||
# Bootstrapping of lex is handled automatically.
|
||||
# ALso note that flex.skel no longer gets installed.
|
||||
# Also note that flex.skel no longer gets installed.
|
||||
#
|
||||
# XXX Todo:
|
||||
# Install as lex++, and install FlexLexer.h
|
||||
|
||||
PROG= lex
|
||||
LINKS= ${BINDIR}/lex ${BINDIR}/flex
|
||||
#LINKS+= ${BINDIR}/lex ${BINDIR}/lex++ ${BINDIR}/flex ${BINDIR}/flex++
|
||||
|
||||
SRCS= ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.y \
|
||||
|
@ -20,10 +19,9 @@ SRCS= ccl.c dfa.c ecs.c gen.c main.c misc.c nfa.c parse.y \
|
|||
OBJS+= scan.o
|
||||
LFLAGS+= -is
|
||||
CFLAGS+= -I. -I${.CURDIR}
|
||||
MAN1= flex.1 flexdoc.1
|
||||
MLINKS= flex.1 lex.1 flexdoc.1 lexdoc.1
|
||||
MAN1= lex.1 lexdoc.1
|
||||
|
||||
CLEANFILES+= parse.c parse.h scan.c y.tab.h
|
||||
CLEANFILES+= parse.c parse.h scan.c y.tab.h y.tab.c
|
||||
|
||||
|
||||
SUBDIR= lib
|
||||
|
|
1001
usr.bin/lex/lex.1
Normal file
1001
usr.bin/lex/lex.1
Normal file
File diff suppressed because it is too large
Load diff
3045
usr.bin/lex/lexdoc.1
Normal file
3045
usr.bin/lex/lexdoc.1
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue