536 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			536 lines
		
	
	
	
		
			12 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# make modula-2 "compiler"
 | 
						|
EMHOME =	../../..
 | 
						|
MDIR =		$(EMHOME)/modules
 | 
						|
MHDIR =		$(MDIR)/h
 | 
						|
PKGDIR =	$(MDIR)/pkg
 | 
						|
LIBDIR =	$(MDIR)/lib
 | 
						|
OBJECTCODE =	$(LIBDIR)/libemk.a
 | 
						|
LLGEN =		$(EMHOME)/bin/LLgen
 | 
						|
MKDEP =		$(EMHOME)/bin/mkdep
 | 
						|
PRID =		$(EMHOME)/bin/prid
 | 
						|
CID =		$(EMHOME)/bin/cid
 | 
						|
CURRDIR =
 | 
						|
LINT =		lint
 | 
						|
 | 
						|
INCLUDES = -I$(MHDIR) -I$(EMHOME)/h -I$(PKGDIR)
 | 
						|
OLIBS = $(LIBDIR)/libem_mes.a $(OBJECTCODE) $(LIBDIR)/libinput.a $(LIBDIR)/libassert.a $(LIBDIR)/liballoc.a $(MALLOC) $(LIBDIR)/libprint.a $(LIBDIR)/libstring.a $(LIBDIR)/libsystem.a
 | 
						|
 | 
						|
GF =	program.g declar.g expression.g statement.g
 | 
						|
GENGFILES=	tokenfile.g
 | 
						|
GFILES =$(GENGFILES) $(GF)
 | 
						|
LLGENOPTIONS = -v
 | 
						|
PROFILE =
 | 
						|
COPTIONS=
 | 
						|
OPTIM=-O
 | 
						|
CFLAGS = $(PROFILE) $(INCLUDES) $(COPTIONS) $(OPTIM) -DSTATIC=
 | 
						|
LINTFLAGS = -DSTATIC= -DNORCSID
 | 
						|
MALLOC = $(LIBDIR)/malloc.o
 | 
						|
LDFLAGS = -i $(PROFILE)
 | 
						|
LSRC =	tokenfile.c program.c declar.c expression.c statement.c
 | 
						|
LOBJ =	tokenfile.o program.o declar.o expression.o statement.o
 | 
						|
CSRC =	LLlex.c LLmessage.c error.c main.c \
 | 
						|
	tokenname.c idf.c input.c type.c def.c \
 | 
						|
	misc.c enter.c defmodule.c typequiv.c node.c \
 | 
						|
	cstoper.c chk_expr.c options.c walk.c desig.c \
 | 
						|
	code.c lookup.c Version.c
 | 
						|
COBJ =	LLlex.o LLmessage.o char.o error.o main.o \
 | 
						|
	symbol2str.o tokenname.o idf.o input.o type.o def.o \
 | 
						|
	scope.o misc.o enter.o defmodule.o typequiv.o node.o \
 | 
						|
	cstoper.o chk_expr.o options.o walk.o casestat.o desig.o \
 | 
						|
	code.o tmpvar.o lookup.o Version.o next.o
 | 
						|
GENC=	$(LSRC) symbol2str.c char.c Lpars.c casestat.c tmpvar.c scope.c next.c
 | 
						|
SRC =	$(CSRC) $(GENC)
 | 
						|
OBJ =	$(COBJ) $(LOBJ) Lpars.o
 | 
						|
 | 
						|
GENH=	errout.h\
 | 
						|
	idfsize.h numsize.h strsize.h target_sizes.h bigparam.h bigresult.h \
 | 
						|
	inputtype.h density.h squeeze.h nocross.h nostrict.h \
 | 
						|
	def.h debugcst.h type.h Lpars.h node.h desig.h strict3rd.h
 | 
						|
HFILES=		LLlex.h\
 | 
						|
	chk_expr.h class.h const.h debug.h f_info.h idf.h\
 | 
						|
	input.h main.h misc.h scope.h standards.h tokenname.h\
 | 
						|
	walk.h warning.h SYSTEM.h $(GENH)
 | 
						|
#
 | 
						|
GENFILES = $(GENGFILES) $(GENC) $(GENH)
 | 
						|
NEXTFILES = def.H type.H node.H desig.H scope.C tmpvar.C casestat.C
 | 
						|
 | 
						|
#EXCLEXCLEXCLEXCL
 | 
						|
 | 
						|
all:	Cfiles
 | 
						|
	sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) $(CURRDIR)main ; else EMHOME=$(EMHOME); export EMHOME; sh Resolve main ; fi'
 | 
						|
	@rm -f nmclash.o a.out
 | 
						|
 | 
						|
Omain:	Cfiles
 | 
						|
	rm -f *.o
 | 
						|
	sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) "COPTIONS="-DPEEPHOLE $(CURRDIR)omain ; else EMHOME=$(EMHOME); export EMHOME; ./Resolve omain ; fi'
 | 
						|
	@rm -f nmclash.o a.out
 | 
						|
	mv *.o PEEPHOLE
 | 
						|
 | 
						|
CEmain: Cfiles
 | 
						|
	rm -f *.o
 | 
						|
	sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) "COPTIONS="-DCODE_EXPANDER $(CURRDIR)cemain ; else EMHOME=$(EMHOME); export EMHOME; ./Resolve cemain ; fi'
 | 
						|
	@rm -f nmclash.o a.out
 | 
						|
	mv *.o CODE_EXPANDER
 | 
						|
 | 
						|
install:	all
 | 
						|
	cp $(CURRDIR)main $(EMHOME)/lib/em_m2
 | 
						|
	rm -f $(EMHOME)/man/em_m2.6 $(EMHOME)/man/modula-2.1
 | 
						|
	cp $(CURRDIR)em_m2.6 $(CURRDIR)modula-2.1 $(EMHOME)/man
 | 
						|
 | 
						|
cmp:	all
 | 
						|
	-cmp $(CURRDIR)main $(EMHOME)/lib/em_m2
 | 
						|
	-cmp $(CURRDIR)em_m2.6 $(EMHOME)/man/em_m2.6
 | 
						|
	-cmp $(CURRDIR)modula-2.1 $(EMHOME)/man/modula-2.1
 | 
						|
 | 
						|
opr:
 | 
						|
	make pr | opr
 | 
						|
 | 
						|
pr:
 | 
						|
	@pr Makefile Resolve Parameters $(GF) *.H $(HFILES) *.C $(CSRC)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f $(OBJ) $(GENFILES) LLfiles hfiles Cfiles clashes \
 | 
						|
		$(CURRDIR)main LL.output
 | 
						|
	(cd .. ; rm -rf Xsrc)
 | 
						|
 | 
						|
lint:	Cfiles
 | 
						|
	sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) Xlint ; else EMHOME=$(EMHOME); export EMHOME; sh Resolve Xlint ; fi'
 | 
						|
	@rm -f nmclash.o a.out
 | 
						|
 | 
						|
longnames:	$(SRC) $(HFILES)
 | 
						|
	sh -c 'if test -f longnames ; then $(PRID) -l7 longnames $? > Xlongnames ; mv Xlongnames longnames ; else $(PRID) -l7 $? > longnames ; fi'
 | 
						|
 | 
						|
# entry points not to be used directly
 | 
						|
 | 
						|
Cfiles: hfiles LLfiles $(GENC) $(GENH) Makefile
 | 
						|
	echo $(SRC) $(HFILES) > Cfiles
 | 
						|
 | 
						|
LLfiles:	$(GFILES)
 | 
						|
	$(LLGEN) $(LLGENOPTIONS) $(GFILES)
 | 
						|
	@touch LLfiles
 | 
						|
 | 
						|
hfiles: Parameters make.hfiles
 | 
						|
	make.hfiles Parameters
 | 
						|
	touch hfiles
 | 
						|
 | 
						|
tokenfile.g:	tokenname.c make.tokfile
 | 
						|
	make.tokfile <tokenname.c >tokenfile.g
 | 
						|
 | 
						|
symbol2str.c:	tokenname.c make.tokcase
 | 
						|
	make.tokcase <tokenname.c >symbol2str.c
 | 
						|
 | 
						|
.SUFFIXES:	.H .h
 | 
						|
.H.h:
 | 
						|
		./make.allocd < $*.H > $*.h
 | 
						|
 | 
						|
.SUFFIXES:	.C .c
 | 
						|
.C.c:
 | 
						|
		./make.allocd < $*.C > $*.c
 | 
						|
 | 
						|
def.h:		make.allocd
 | 
						|
type.h:		make.allocd
 | 
						|
node.h:		make.allocd
 | 
						|
desig.h:	make.allocd
 | 
						|
scope.c:	make.allocd
 | 
						|
tmpvar.c:	make.allocd
 | 
						|
casestat.c:	make.allocd
 | 
						|
 | 
						|
next.c:		$(NEXTFILES) ./make.next
 | 
						|
		./make.next $(NEXTFILES) > next.c
 | 
						|
 | 
						|
char.c: char.tab
 | 
						|
	$(EMHOME)/bin/tabgen -fchar.tab >char.c
 | 
						|
 | 
						|
depend: Cfiles
 | 
						|
	sed '/^#AUTOAUTO/,$$d' Makefile > Makefile.new
 | 
						|
	echo '#AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTO' >> Makefile.new
 | 
						|
	$(MKDEP) $(SRC) |\
 | 
						|
		sed 's/\.c:/\.o:/' >> Makefile.new
 | 
						|
	mv Makefile Makefile.old
 | 
						|
	mv Makefile.new Makefile
 | 
						|
 | 
						|
#INCLINCLINCLINCL
 | 
						|
 | 
						|
Xlint:
 | 
						|
	$(LINT) $(INCLUDES) $(LINTFLAGS) $(SRC) \
 | 
						|
		$(LIBDIR)/llib-lem_mes.ln \
 | 
						|
		$(LIBDIR)/llib-lemk.ln \
 | 
						|
		$(LIBDIR)/llib-linput.ln \
 | 
						|
		$(LIBDIR)/llib-lassert.ln \
 | 
						|
		$(LIBDIR)/llib-lalloc.ln \
 | 
						|
		$(LIBDIR)/llib-lprint.ln \
 | 
						|
		$(LIBDIR)/llib-lstring.ln \
 | 
						|
		$(LIBDIR)/llib-lsystem.ln
 | 
						|
 | 
						|
$(CURRDIR)main:	$(OBJ) $(CURRDIR)Makefile
 | 
						|
	$(CC) $(LDFLAGS) $(OBJ) $(OLIBS) -o $(CURRDIR)main
 | 
						|
	-size $(CURRDIR)main
 | 
						|
 | 
						|
$(CURRDIR)omain:	$(OBJ) #$(CURRDIR)Makefile
 | 
						|
	#$(CC) $(LDFLAGS) $(OBJ) $(OLIBS) -o $(CURRDIR)omain
 | 
						|
	#size $(CURRDIR)omain
 | 
						|
 | 
						|
$(CURRDIR)cemain:      $(OBJ) #$(CURRDIR)Makefile
 | 
						|
	#$(CC) $(LDFLAGS) $(OBJ) $(OLIBS) -o $(CURRDIR)cemain 
 | 
						|
	#size $(CURRDIR)cemain
 | 
						|
 | 
						|
 | 
						|
#AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTO
 | 
						|
LLlex.o: LLlex.h
 | 
						|
LLlex.o: Lpars.h
 | 
						|
LLlex.o: bigparam.h
 | 
						|
LLlex.o: class.h
 | 
						|
LLlex.o: const.h
 | 
						|
LLlex.o: debug.h
 | 
						|
LLlex.o: debugcst.h
 | 
						|
LLlex.o: def.h
 | 
						|
LLlex.o: f_info.h
 | 
						|
LLlex.o: idf.h
 | 
						|
LLlex.o: idfsize.h
 | 
						|
LLlex.o: input.h
 | 
						|
LLlex.o: inputtype.h
 | 
						|
LLlex.o: nocross.h
 | 
						|
LLlex.o: numsize.h
 | 
						|
LLlex.o: strsize.h
 | 
						|
LLlex.o: target_sizes.h
 | 
						|
LLlex.o: type.h
 | 
						|
LLlex.o: warning.h
 | 
						|
LLmessage.o: LLlex.h
 | 
						|
LLmessage.o: Lpars.h
 | 
						|
LLmessage.o: idf.h
 | 
						|
error.o: LLlex.h
 | 
						|
error.o: debug.h
 | 
						|
error.o: debugcst.h
 | 
						|
error.o: errout.h
 | 
						|
error.o: f_info.h
 | 
						|
error.o: input.h
 | 
						|
error.o: inputtype.h
 | 
						|
error.o: main.h
 | 
						|
error.o: node.h
 | 
						|
error.o: nostrict.h
 | 
						|
error.o: strict3rd.h
 | 
						|
error.o: warning.h
 | 
						|
main.o: LLlex.h
 | 
						|
main.o: Lpars.h
 | 
						|
main.o: SYSTEM.h
 | 
						|
main.o: bigparam.h
 | 
						|
main.o: debug.h
 | 
						|
main.o: debugcst.h
 | 
						|
main.o: def.h
 | 
						|
main.o: f_info.h
 | 
						|
main.o: idf.h
 | 
						|
main.o: input.h
 | 
						|
main.o: inputtype.h
 | 
						|
main.o: nocross.h
 | 
						|
main.o: node.h
 | 
						|
main.o: scope.h
 | 
						|
main.o: standards.h
 | 
						|
main.o: strict3rd.h
 | 
						|
main.o: target_sizes.h
 | 
						|
main.o: tokenname.h
 | 
						|
main.o: type.h
 | 
						|
main.o: warning.h
 | 
						|
tokenname.o: Lpars.h
 | 
						|
tokenname.o: idf.h
 | 
						|
tokenname.o: tokenname.h
 | 
						|
idf.o: idf.h
 | 
						|
input.o: f_info.h
 | 
						|
input.o: input.h
 | 
						|
input.o: inputtype.h
 | 
						|
type.o: LLlex.h
 | 
						|
type.o: bigparam.h
 | 
						|
type.o: chk_expr.h
 | 
						|
type.o: const.h
 | 
						|
type.o: debug.h
 | 
						|
type.o: debugcst.h
 | 
						|
type.o: def.h
 | 
						|
type.o: idf.h
 | 
						|
type.o: nocross.h
 | 
						|
type.o: node.h
 | 
						|
type.o: nostrict.h
 | 
						|
type.o: scope.h
 | 
						|
type.o: squeeze.h
 | 
						|
type.o: target_sizes.h
 | 
						|
type.o: type.h
 | 
						|
type.o: walk.h
 | 
						|
type.o: warning.h
 | 
						|
def.o: LLlex.h
 | 
						|
def.o: Lpars.h
 | 
						|
def.o: bigparam.h
 | 
						|
def.o: debug.h
 | 
						|
def.o: debugcst.h
 | 
						|
def.o: def.h
 | 
						|
def.o: idf.h
 | 
						|
def.o: main.h
 | 
						|
def.o: nocross.h
 | 
						|
def.o: node.h
 | 
						|
def.o: scope.h
 | 
						|
def.o: target_sizes.h
 | 
						|
def.o: type.h
 | 
						|
def.o: warning.h
 | 
						|
misc.o: LLlex.h
 | 
						|
misc.o: f_info.h
 | 
						|
misc.o: idf.h
 | 
						|
misc.o: misc.h
 | 
						|
misc.o: node.h
 | 
						|
enter.o: LLlex.h
 | 
						|
enter.o: bigparam.h
 | 
						|
enter.o: debug.h
 | 
						|
enter.o: debugcst.h
 | 
						|
enter.o: def.h
 | 
						|
enter.o: f_info.h
 | 
						|
enter.o: idf.h
 | 
						|
enter.o: main.h
 | 
						|
enter.o: misc.h
 | 
						|
enter.o: nocross.h
 | 
						|
enter.o: node.h
 | 
						|
enter.o: scope.h
 | 
						|
enter.o: target_sizes.h
 | 
						|
enter.o: type.h
 | 
						|
defmodule.o: LLlex.h
 | 
						|
defmodule.o: Lpars.h
 | 
						|
defmodule.o: bigparam.h
 | 
						|
defmodule.o: debug.h
 | 
						|
defmodule.o: debugcst.h
 | 
						|
defmodule.o: def.h
 | 
						|
defmodule.o: f_info.h
 | 
						|
defmodule.o: idf.h
 | 
						|
defmodule.o: input.h
 | 
						|
defmodule.o: inputtype.h
 | 
						|
defmodule.o: main.h
 | 
						|
defmodule.o: misc.h
 | 
						|
defmodule.o: nocross.h
 | 
						|
defmodule.o: node.h
 | 
						|
defmodule.o: scope.h
 | 
						|
defmodule.o: target_sizes.h
 | 
						|
defmodule.o: type.h
 | 
						|
typequiv.o: LLlex.h
 | 
						|
typequiv.o: bigparam.h
 | 
						|
typequiv.o: debug.h
 | 
						|
typequiv.o: debugcst.h
 | 
						|
typequiv.o: def.h
 | 
						|
typequiv.o: idf.h
 | 
						|
typequiv.o: main.h
 | 
						|
typequiv.o: nocross.h
 | 
						|
typequiv.o: node.h
 | 
						|
typequiv.o: strict3rd.h
 | 
						|
typequiv.o: target_sizes.h
 | 
						|
typequiv.o: type.h
 | 
						|
typequiv.o: warning.h
 | 
						|
node.o: LLlex.h
 | 
						|
node.o: bigparam.h
 | 
						|
node.o: debug.h
 | 
						|
node.o: debugcst.h
 | 
						|
node.o: def.h
 | 
						|
node.o: main.h
 | 
						|
node.o: nocross.h
 | 
						|
node.o: node.h
 | 
						|
node.o: target_sizes.h
 | 
						|
node.o: type.h
 | 
						|
cstoper.o: LLlex.h
 | 
						|
cstoper.o: Lpars.h
 | 
						|
cstoper.o: bigparam.h
 | 
						|
cstoper.o: debug.h
 | 
						|
cstoper.o: debugcst.h
 | 
						|
cstoper.o: idf.h
 | 
						|
cstoper.o: nocross.h
 | 
						|
cstoper.o: node.h
 | 
						|
cstoper.o: standards.h
 | 
						|
cstoper.o: target_sizes.h
 | 
						|
cstoper.o: type.h
 | 
						|
cstoper.o: warning.h
 | 
						|
chk_expr.o: LLlex.h
 | 
						|
chk_expr.o: Lpars.h
 | 
						|
chk_expr.o: bigparam.h
 | 
						|
chk_expr.o: chk_expr.h
 | 
						|
chk_expr.o: const.h
 | 
						|
chk_expr.o: debug.h
 | 
						|
chk_expr.o: debugcst.h
 | 
						|
chk_expr.o: def.h
 | 
						|
chk_expr.o: idf.h
 | 
						|
chk_expr.o: main.h
 | 
						|
chk_expr.o: misc.h
 | 
						|
chk_expr.o: nocross.h
 | 
						|
chk_expr.o: node.h
 | 
						|
chk_expr.o: nostrict.h
 | 
						|
chk_expr.o: scope.h
 | 
						|
chk_expr.o: standards.h
 | 
						|
chk_expr.o: strict3rd.h
 | 
						|
chk_expr.o: target_sizes.h
 | 
						|
chk_expr.o: type.h
 | 
						|
chk_expr.o: warning.h
 | 
						|
options.o: bigparam.h
 | 
						|
options.o: class.h
 | 
						|
options.o: idfsize.h
 | 
						|
options.o: main.h
 | 
						|
options.o: nocross.h
 | 
						|
options.o: nostrict.h
 | 
						|
options.o: squeeze.h
 | 
						|
options.o: strict3rd.h
 | 
						|
options.o: target_sizes.h
 | 
						|
options.o: type.h
 | 
						|
options.o: warning.h
 | 
						|
walk.o: LLlex.h
 | 
						|
walk.o: Lpars.h
 | 
						|
walk.o: bigparam.h
 | 
						|
walk.o: bigresult.h
 | 
						|
walk.o: chk_expr.h
 | 
						|
walk.o: debug.h
 | 
						|
walk.o: debugcst.h
 | 
						|
walk.o: def.h
 | 
						|
walk.o: desig.h
 | 
						|
walk.o: f_info.h
 | 
						|
walk.o: idf.h
 | 
						|
walk.o: main.h
 | 
						|
walk.o: misc.h
 | 
						|
walk.o: nocross.h
 | 
						|
walk.o: node.h
 | 
						|
walk.o: scope.h
 | 
						|
walk.o: squeeze.h
 | 
						|
walk.o: strict3rd.h
 | 
						|
walk.o: target_sizes.h
 | 
						|
walk.o: type.h
 | 
						|
walk.o: walk.h
 | 
						|
walk.o: warning.h
 | 
						|
desig.o: LLlex.h
 | 
						|
desig.o: bigparam.h
 | 
						|
desig.o: debug.h
 | 
						|
desig.o: debugcst.h
 | 
						|
desig.o: def.h
 | 
						|
desig.o: desig.h
 | 
						|
desig.o: nocross.h
 | 
						|
desig.o: node.h
 | 
						|
desig.o: scope.h
 | 
						|
desig.o: squeeze.h
 | 
						|
desig.o: target_sizes.h
 | 
						|
desig.o: type.h
 | 
						|
desig.o: walk.h
 | 
						|
desig.o: warning.h
 | 
						|
code.o: LLlex.h
 | 
						|
code.o: Lpars.h
 | 
						|
code.o: bigparam.h
 | 
						|
code.o: bigresult.h
 | 
						|
code.o: debug.h
 | 
						|
code.o: debugcst.h
 | 
						|
code.o: def.h
 | 
						|
code.o: desig.h
 | 
						|
code.o: nocross.h
 | 
						|
code.o: node.h
 | 
						|
code.o: scope.h
 | 
						|
code.o: squeeze.h
 | 
						|
code.o: standards.h
 | 
						|
code.o: target_sizes.h
 | 
						|
code.o: type.h
 | 
						|
code.o: walk.h
 | 
						|
lookup.o: LLlex.h
 | 
						|
lookup.o: bigparam.h
 | 
						|
lookup.o: debug.h
 | 
						|
lookup.o: debugcst.h
 | 
						|
lookup.o: def.h
 | 
						|
lookup.o: idf.h
 | 
						|
lookup.o: misc.h
 | 
						|
lookup.o: nocross.h
 | 
						|
lookup.o: node.h
 | 
						|
lookup.o: scope.h
 | 
						|
lookup.o: target_sizes.h
 | 
						|
lookup.o: type.h
 | 
						|
tokenfile.o: Lpars.h
 | 
						|
program.o: LLlex.h
 | 
						|
program.o: Lpars.h
 | 
						|
program.o: bigparam.h
 | 
						|
program.o: debug.h
 | 
						|
program.o: debugcst.h
 | 
						|
program.o: def.h
 | 
						|
program.o: f_info.h
 | 
						|
program.o: idf.h
 | 
						|
program.o: main.h
 | 
						|
program.o: nocross.h
 | 
						|
program.o: node.h
 | 
						|
program.o: scope.h
 | 
						|
program.o: strict3rd.h
 | 
						|
program.o: target_sizes.h
 | 
						|
program.o: type.h
 | 
						|
program.o: warning.h
 | 
						|
declar.o: LLlex.h
 | 
						|
declar.o: Lpars.h
 | 
						|
declar.o: bigparam.h
 | 
						|
declar.o: chk_expr.h
 | 
						|
declar.o: debug.h
 | 
						|
declar.o: debugcst.h
 | 
						|
declar.o: def.h
 | 
						|
declar.o: idf.h
 | 
						|
declar.o: main.h
 | 
						|
declar.o: misc.h
 | 
						|
declar.o: nocross.h
 | 
						|
declar.o: node.h
 | 
						|
declar.o: nostrict.h
 | 
						|
declar.o: scope.h
 | 
						|
declar.o: strict3rd.h
 | 
						|
declar.o: target_sizes.h
 | 
						|
declar.o: type.h
 | 
						|
declar.o: warning.h
 | 
						|
expression.o: LLlex.h
 | 
						|
expression.o: Lpars.h
 | 
						|
expression.o: bigparam.h
 | 
						|
expression.o: chk_expr.h
 | 
						|
expression.o: const.h
 | 
						|
expression.o: debug.h
 | 
						|
expression.o: debugcst.h
 | 
						|
expression.o: def.h
 | 
						|
expression.o: idf.h
 | 
						|
expression.o: nocross.h
 | 
						|
expression.o: node.h
 | 
						|
expression.o: target_sizes.h
 | 
						|
expression.o: type.h
 | 
						|
expression.o: warning.h
 | 
						|
statement.o: LLlex.h
 | 
						|
statement.o: Lpars.h
 | 
						|
statement.o: bigparam.h
 | 
						|
statement.o: def.h
 | 
						|
statement.o: idf.h
 | 
						|
statement.o: nocross.h
 | 
						|
statement.o: node.h
 | 
						|
statement.o: scope.h
 | 
						|
statement.o: target_sizes.h
 | 
						|
statement.o: type.h
 | 
						|
symbol2str.o: Lpars.h
 | 
						|
char.o: class.h
 | 
						|
Lpars.o: Lpars.h
 | 
						|
casestat.o: LLlex.h
 | 
						|
casestat.o: Lpars.h
 | 
						|
casestat.o: bigparam.h
 | 
						|
casestat.o: chk_expr.h
 | 
						|
casestat.o: debug.h
 | 
						|
casestat.o: debugcst.h
 | 
						|
casestat.o: def.h
 | 
						|
casestat.o: density.h
 | 
						|
casestat.o: desig.h
 | 
						|
casestat.o: nocross.h
 | 
						|
casestat.o: node.h
 | 
						|
casestat.o: squeeze.h
 | 
						|
casestat.o: target_sizes.h
 | 
						|
casestat.o: type.h
 | 
						|
casestat.o: walk.h
 | 
						|
tmpvar.o: LLlex.h
 | 
						|
tmpvar.o: bigparam.h
 | 
						|
tmpvar.o: debug.h
 | 
						|
tmpvar.o: debugcst.h
 | 
						|
tmpvar.o: def.h
 | 
						|
tmpvar.o: main.h
 | 
						|
tmpvar.o: nocross.h
 | 
						|
tmpvar.o: scope.h
 | 
						|
tmpvar.o: target_sizes.h
 | 
						|
tmpvar.o: type.h
 | 
						|
scope.o: LLlex.h
 | 
						|
scope.o: bigparam.h
 | 
						|
scope.o: debug.h
 | 
						|
scope.o: debugcst.h
 | 
						|
scope.o: def.h
 | 
						|
scope.o: idf.h
 | 
						|
scope.o: nocross.h
 | 
						|
scope.o: node.h
 | 
						|
scope.o: scope.h
 | 
						|
scope.o: target_sizes.h
 | 
						|
scope.o: type.h
 | 
						|
next.o: debug.h
 | 
						|
next.o: debugcst.h
 |