1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- # Makefile for bison
- CC = gcc
- DESTDIR=
- # where the installed binary goes
- BINDIR = $(DESTDIR)/usr/local
- # where the parsers go
- PARSERDIR = $(DESTDIR)/usr/local/lib
- # names of parser files (renamed to avoid probles with an installed bison)
- PFILE = bison1.simple
- PFILE1 = bison1.hairy
- # It is unwise ever to compile a program without symbols.
- #CFLAGS = -g -Wall
- CFLAGS = -g
- # PFILES = -DXPFILE=\"$(PARSERDIR)/$(PFILE)\" \
- # -DXPFILE1=\"$(PARSERDIR)/$(PFILE1)\"
- PFILES = -DXPFILE=\"$(PFILE)\" \
- -DXPFILE1=\"$(PFILE1)\"
- OBJECTS = LR0.o allocate.o closure.o conflicts.o derives.o files.o \
- getargs.o gram.o lalr.o \
- lex.o main.o nullable.o output.o print.o reader.o symtab.o \
- warshall.o
- start: bison
- clean:
- rm -f a.out *.o core bison1
- # orig install turned off for now
- #install: bison
- # install bison $(BINDIR)
- # cp $(PFILE) $(PFILE1) $(PARSERDIR)
- install: bison
- echo "make install turned off"
- bison: $(OBJECTS)
- $(CC) $(LDFLAGS) -o bison1 $(OBJECTS)
- dist: bison-dist.tar bison-dist.tar.Z
- bison-dist.tar:
- tar cvf bison-dist.tar \
- COPYING Makefile REFERENCES bison.1 bison.simple bison.hairy \
- LR0.c allocate.c closure.c conflicts.c \
- derives.c files.c getargs.c gram.c lalr.c lex.c main.c \
- nullable.c output.c print.c reader.c symtab.c warshall.c \
- files.h gram.h lex.h machine.h new.h state.h symtab.h types.h \
- bison.cld build.com vmsgetargs.c vmshlp.mar
- bison-dist.tar.Z: bison-dist.tar
- compress < bison-dist.tar > bison-dist.tar.Z
- # This file is different to pass the parser file names
- # to the compiler.
- files.o: files.c files.h new.h gram.h
- $(CC) -c $(CFLAGS) $(PFILES) files.c
- LR0.o: machine.h new.h gram.h state.h
- closure.o: machine.h new.h gram.h
- conflicts.o: machine.h new.h files.h gram.h state.h
- derives.o: new.h types.h gram.h
- getargs.o: files.h
- lalr.o: machine.h types.h state.h new.h gram.h
- lex.o: files.h symtab.h lex.h
- main.o: machine.h
- nullable.o: types.h gram.h new.h
- output.o: machine.h new.h files.h gram.h state.h
- print.o: machine.h new.h files.h gram.h state.h
- reader.o: files.h new.h symtab.h lex.h gram.h
- symtab.o: new.h symtab.h gram.h
- warshall.o: machine.h
|