Deleted Added
full compact
Makefile (16519) Makefile (17467)
1# $Id: Makefile,v 1.4 1996/05/07 23:19:47 wosch Exp $
1# $Id: Makefile,v 1.5 1996/06/19 20:46:57 nate Exp $
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.

--- 11 unchanged lines hidden (view full) ---

21CFLAGS+= -I. -I${.CURDIR}
22MAN1= lex.1
23MLINKS+= lex.1 flex.1
24MLINKS+= lex.1 flex++.1
25MLINKS+= lex.1 lex++.1
26
27CLEANFILES+= parse.c parse.h scan.c y.tab.h y.tab.c
28
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.

--- 11 unchanged lines hidden (view full) ---

21CFLAGS+= -I. -I${.CURDIR}
22MAN1= lex.1
23MLINKS+= lex.1 flex.1
24MLINKS+= lex.1 flex++.1
25MLINKS+= lex.1 lex++.1
26
27CLEANFILES+= parse.c parse.h scan.c y.tab.h y.tab.c
28
29
29.if !defined(NOLIB)
30SUBDIR= lib
30SUBDIR= lib
31.endif
31
32beforeinstall:
33 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 644 \
34 ${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++
35
36.depend: parse.h
37
38parse.c parse.h: parse.y

--- 19 unchanged lines hidden ---
32
33beforeinstall:
34 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 644 \
35 ${.CURDIR}/FlexLexer.h ${DESTDIR}/usr/include/g++
36
37.depend: parse.h
38
39parse.c parse.h: parse.y

--- 19 unchanged lines hidden ---