Deleted Added
full compact
Makefile (13343) Makefile (15679)
1# $Id: Makefile,v 1.2 1994/08/27 09:52:30 csgr Exp $
1# $Id: Makefile,v 1.3 1996/01/08 09:17:39 peter 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.

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

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
39 $(YACC) -d $(.CURDIR)/parse.y
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.

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

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
39 $(YACC) -d $(.CURDIR)/parse.y
40 mv y.tab.c parse.c
41 mv y.tab.h parse.h
40 mv -f y.tab.c parse.c
41 mv -f y.tab.h parse.h
42
43.if exists(/usr/bin/lex)
44scan.o: parse.c
45.else
46# We must bootstrap
47scan.o: scan.c parse.h
48
49scan.c:

--- 13 unchanged lines hidden ---
42
43.if exists(/usr/bin/lex)
44scan.o: parse.c
45.else
46# We must bootstrap
47scan.o: scan.c parse.h
48
49scan.c:

--- 13 unchanged lines hidden ---