home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d407
/
flex
/
src.lzh
/
src
/
Makefile.amiga
< prev
next >
Wrap
Makefile
|
1990-07-14
|
5KB
|
163 lines
# make file for "flex" tool (modified to work with Lattice 5.05)
# @(#) $Header: /usr/fsys/odin/a/vern/flex/RCS/Makefile,v 2.9 90/05/26 17:28:44 vern Exp $ (LBL)
# Porting considerations:
#
# For System V Unix machines, add -DUSG to CFLAGS (if it's not
# automatically defined)
# For Vax/VMS, add "-DVMS -DUSG" to CFLAGS.
# For MS-DOS, add "-DMS_DOS -DUSG" to CFLAGS. Create \tmp if not present.
# You will also want to rename flex.skel to something with a three
# character extension, change SKELETON_FILE below appropriately,
# See MSDOS.notes for more info.
# For Amiga, add "-DAMIGA -DUSG" to CFLAGS.
# For SCO Unix, add "-DSCO_UNIX" to CFLAGS.
#
# For C compilers which don't know about "void", add -Dvoid=int to CFLAGS.
#
# If your C compiler is ANSI standard but does not include the <stdlib.h>
# header file (some installations of gcc have this problem), then add
# -DDONT_HAVE_STDLIB_H to CFLAGS.
#
# 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.
#
# If on your system you have trouble building flex due to 8-bit
# character problems, remove the -8 from FLEX_FLAGS and the
# "#define FLEX_8_BIT_CHARS" from the beginning of flexdef.h.
# the first time around use "make first_flex"
# Installation targeting. Files will be installed under the tree rooted
# at DESTDIR. User commands will be installed in BINDIR, library files
# in LIBDIR (which will be created if necessary), auxiliary files in
# AUXDIR, manual pages will be installed in MANDIR with extension MANEXT.
# Raw, unformatted troff source will be installed if INSTALLMAN=man, nroff
# preformatted versions will be installed if INSTALLMAN=cat.
DESTDIR =
BINDIR = c:unix
LIBDIR = s:
AUXDIR = s:
MANDIR = uuman:
MANEXT = doc
INSTALLMAN = man
# MAKE = make
SKELETON_FILE = $(DESTDIR)$(AUXDIR)flex.skel
# Cannot get quotes to work correctly with AmigaDOS and LMK.
# moved this define to flexdef.h (between ifdef AMIGA...endif) wpl 7/14/90
#SKELFLAGS = -dDEFAULT_SKELETON_FILE="$(SKELETON_FILE)"
SKELFLAGS =
CFLAGS = -O -cwus -dAMIGA -dUSG
LDFLAGS = -s
COMPRESSION =
FLEX_FLAGS = -ist8 -Sflex.skel
# which "flex" to use to generate scan.c from scan.l
FLEX = flex
# CC = cc
YACC = bison
MAKE = lmk
MFLAGS = -f Makefile.amiga
FLEXOBJS = \
ccl.o \
dfa.o \
ecs.o \
gen.o \
main.o \
misc.o \
nfa.o \
parse.o \
scan.o \
sym.o \
tblcmp.o \
yylex.o
FLEX_C_SOURCES = \
ccl.c \
dfa.c \
ecs.c \
gen.c \
main.c \
misc.c \
nfa.c \
parse.c \
scan.c \
sym.c \
tblcmp.c \
yylex.c
all : flex
flex : $(FLEXOBJS)
blink from lib:c.o $(FLEXOBJS) to flex lib lib:lc.lib lib:amiga.lib
first_flex:
copy initscan.c scan.c
$(MAKE) $(MFLAGS) flex
parse.h parse.c : parse.y
$(YACC) -d parse.y
@copy parse.tab.c parse.c
@copy parse.tab.h parse.h
@delete parse.tab.c
@delete parse.tab.h
scan.c : scan.l
$(FLEX) >scan.c $(FLEX_FLAGS) $(COMPRESSION) scan.l
scan.o : scan.c parse.h flexdef.h
main.o : main.c flexdef.h
$(CC) $(CFLAGS) $(SKELFLAGS) main.c
ccl.o : ccl.c flexdef.h
dfa.o : dfa.c flexdef.h
ecs.o : ecs.c flexdef.h
gen.o : gen.c flexdef.h
misc.o : misc.c flexdef.h
nfa.o : nfa.c flexdef.h
parse.o : parse.c flexdef.h
sym.o : sym.c flexdef.h
tblcmp.o : tblcmp.c flexdef.h
yylex.o : yylex.c flexdef.h
install : flex flex.skel
copy flex $(DESTDIR)$(BINDIR)/flex
copy flex.skel $(SKELETON_FILE)
#install.man : flex.1 flexdoc.1
# install -c -m 644 flex.1 $(DESTDIR)$(MANDIR)flex.$(MANEXT)
# install -c -m 644 flexdoc.1 $(DESTDIR)$(MANDIR)flexdoc.$(MANEXT)
#install.cat : flex.1 flexdoc.1
# nroff -h -man flex.1 > $(DESTDIR)$(MANDIR)/flex.$(MANEXT)
# nroff -h -man flexdoc.1 > $(DESTDIR)$(MANDIR)/flexdoc.$(MANEXT)
# chmod 644 $(DESTDIR)$(MANDIR)/flex.$(MANEXT)
# chmod 644 $(DESTDIR)$(MANDIR)/flexdoc.$(MANEXT)
#clean :
# rm -f core errs flex *.o parse.c *.lint parse.h flex.man tags \
# $(FLEXLIB)
#test : flex
# ./flex $(FLEX_FLAGS) $(COMPRESSION) scan.l | diff scan.c -
#bigtest :
# rm -f scan.c ; $(MAKE) COMPRESSION="-C" test
# rm -f scan.c ; $(MAKE) COMPRESSION="-Ce" test
# rm -f scan.c ; $(MAKE) COMPRESSION="-Cm" test
# rm -f scan.c ; $(MAKE) COMPRESSION="-Cfe" test
# rm -f scan.c ; $(MAKE) COMPRESSION="-CFe" test
# rm -f scan.c ; $(MAKE) COMPRESSION="-Cf" test
# rm -f scan.c ; $(MAKE) COMPRESSION="-CF" test
# rm -f scan.c ; $(MAKE)