Makefile 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  1. # $Header$
  2. # M A K E F I L E F O R A C K C - C O M P I L E R
  3. # Machine and environ dependent definitions
  4. EMHOME = ../../..
  5. CC = cc
  6. CFLOW = cflow
  7. MKDEP = $(EMHOME)/bin/mkdep
  8. PRID = $(EMHOME)/bin/prid
  9. CID = $(EMHOME)/bin/cid
  10. # Libraries and EM interface definitions
  11. SYSLIB = $(EMHOME)/modules/lib/libsystem.a
  12. EMKLIB = $(EMHOME)/modules/lib/libemk.a $(EMHOME)/lib/em_data.a
  13. EMELIB = $(EMHOME)/modules/lib/libeme.a $(EMHOME)/lib/em_data.a
  14. STRLIB = $(EMHOME)/modules/lib/libstring.a
  15. PRTLIB = $(EMHOME)/modules/lib/libprint.a
  16. FLTLIB = $(EMHOME)/modules/lib/libflt.a
  17. EMMESLIB = $(EMHOME)/modules/lib/libem_mes.a
  18. EMMESOLIB = $(EMHOME)/modules/lib/libem_mesO.a
  19. EMMESCELIB = $(EMHOME)/modules/lib/libem_mesCE.a
  20. MACH = sun3
  21. EMCELIB = $(EMHOME)/lib/$(MACH)/ce.a \
  22. $(EMHOME)/lib/$(MACH)/back.a \
  23. $(EMHOME)/modules/lib/libflt.a \
  24. $(EMHOME)/modules/lib/libobject.a $(EMHOME)/lib/em_data.a
  25. EMOCELIB = $(EMHOME)/modules/lib/libCEopt.a $(EMHOME)/lib/$(MACH)/ce.a \
  26. $(EMHOME)/lib/$(MACH)/back.a \
  27. $(EMHOME)/modules/lib/libflt.a \
  28. $(EMHOME)/modules/lib/libobject.a $(EMHOME)/lib/em_data.a
  29. INPLIB = $(EMHOME)/modules/lib/libinput.a
  30. ALLOCLIB = $(EMHOME)/modules/lib/liballoc.a
  31. MALLOC = $(EMHOME)/modules/lib/malloc.o
  32. LIBS = $(INPLIB) $(EMMESLIB) $(EMKLIB) $(PRTLIB) $(STRLIB) \
  33. $(ALLOCLIB) $(MALLOC) $(SYSLIB) $(FLTLIB)
  34. ELIBS = $(INPLIB) $(EMMESLIB) $(EMELIB) $(PRTLIB) $(STRLIB) \
  35. $(ALLOCLIB) $(MALLOC) $(SYSLIB) $(FLTLIB)
  36. OLIBS = $(INPLIB) $(EMMESOLIB) $(EMOCELIB) $(PRTLIB) $(STRLIB) \
  37. $(ALLOCLIB) $(MALLOC) $(SYSLIB)
  38. CELIBS = $(INPLIB) $(EMMESCELIB) $(EMCELIB) $(PRTLIB) $(STRLIB) \
  39. $(ALLOCLIB) $(MALLOC) $(SYSLIB)
  40. LLIBS = $(INPLIB) $(EMMESLIB) $(PRTLIB) $(STRLIB) \
  41. $(ALLOCLIB) $(MALLOC) $(SYSLIB) $(FLTLIB)
  42. LIB_INCLUDES = -I$(EMHOME)/modules/h -I$(EMHOME)/modules/pkg
  43. EM_INCLUDES = -I$(EMHOME)/h
  44. SYSLLIB = $(EMHOME)/modules/lib/llib-lsystem.ln
  45. EMKLLIB = $(EMHOME)/modules/lib/llib-lemk.ln
  46. EMELLIB = $(EMHOME)/modules/lib/llib-leme.ln
  47. STRLLIB = $(EMHOME)/modules/lib/llib-lstring.ln
  48. PRTLLIB = $(EMHOME)/modules/lib/llib-lprint.ln
  49. EMMESLLIB = $(EMHOME)/modules/lib/llib-lem_mes.ln
  50. INPLLIB = $(EMHOME)/modules/lib/llib-linput.ln
  51. ALLOCLLIB = $(EMHOME)/modules/lib/llib-lalloc.ln
  52. #LINTLIBS =
  53. LINTLIBS = $(EMMESLLIB) $(EMKLLIB) $(PRTLLIB) $(STRLLIB) $(ALLOCLLIB) $(SYSLLIB)
  54. CURRDIR =
  55. COPTIONS =
  56. # What parser generator to use and how
  57. GEN = $(EMHOME)/bin/LLgen
  58. GENOPTIONS = #-vvvx
  59. # tabgen
  60. TABGEN = $(EMHOME)/bin/tabgen
  61. # Special #defines during compilation
  62. PROF = #-pg
  63. CDEFS = $(EM_INCLUDES) $(LIB_INCLUDES)
  64. CFLAGS = $(CDEFS) $(COPTIONS) $(PROF) -O
  65. LDFLAGS = -i $(PROF)
  66. # Grammar files and their objects
  67. LSRC = tokenfile.g declar.g statement.g expression.g program.g ival.g
  68. LCSRC = tokenfile.c declar.c statement.c expression.c program.c Lpars.c ival.c
  69. LOBJ = tokenfile.o declar.o statement.o expression.o program.o Lpars.o ival.o
  70. # Objects of hand-written C files
  71. CSRC = main.c idf.c declarator.c decspecs.c struct.c \
  72. expr.c ch3.c ch3bin.c cstoper.c fltcstoper.c arith.c \
  73. code.c dumpidf.c error.c field.c\
  74. tokenname.c LLlex.c LLmessage.c \
  75. input.c domacro.c replace.c init.c options.c \
  76. skip.c stack.c type.c ch3mon.c label.c eval.c \
  77. switch.c conversion.c util.c proto.c \
  78. pragma.c blocks.c dataflow.c Version.c stab.c\
  79. l_lint.c l_states.c l_misc.c l_ev_ord.c l_outdef.c l_comment.c l_dummy.c
  80. COBJ = main.o idf.o declarator.o decspecs.o struct.o \
  81. expr.o ch3.o ch3bin.o cstoper.o fltcstoper.o arith.o \
  82. code.o dumpidf.o error.o field.o\
  83. tokenname.o LLlex.o LLmessage.o \
  84. input.o domacro.o replace.o init.o options.o \
  85. skip.o stack.o type.o ch3mon.o label.o eval.o \
  86. switch.o conversion.o util.o proto.o \
  87. pragma.o blocks.o dataflow.o Version.o stab.o \
  88. l_lint.o l_states.o l_misc.o l_ev_ord.o l_outdef.o l_comment.o l_dummy.o
  89. # Objects of other generated C files
  90. GCSRC = char.c symbol2str.c next.c
  91. GOBJ = char.o symbol2str.o next.o
  92. # Extra object for generating peephole-optimizer-code-expander version.
  93. # The Sun-3 version is faster when the text-size exceeds 180K! ARRGH
  94. EXTRA_O =
  95. STRSRC = code.str declar.str decspecs.str def.str expr.str field.str \
  96. estack.str util.str proto.str replace.str \
  97. idf.str macro.str stack.str stmt.str struct.str switch.str type.str \
  98. l_brace.str l_state.str l_outdef.str
  99. # generated source files
  100. GHSTRSRC = code.h declar.h decspecs.h def.h expr.h field.h \
  101. estack.h util.h proto.h replace.h \
  102. idf.h macro.h stack.h stmt.h struct.h switch.h type.h \
  103. l_brace.h l_state.h l_outdef.h
  104. GSRC = $(GCSRC) $(GHSTRSRC)
  105. # .h files generated by `make hfiles LLfiles'; PLEASE KEEP THIS UP-TO-DATE!
  106. GHSRC = botch_free.h dataflow.h debug.h density.h errout.h \
  107. idfsize.h ifdepth.h inputtype.h macbuf.h lint.h \
  108. nobitfield.h nopp.h nocross.h \
  109. nparams.h numsize.h parbufsize.h pathlength.h Lpars.h \
  110. strsize.h trgt_sizes.h textsize.h use_tmp.h spec_arith.h static.h \
  111. regcount.h
  112. HSRC = LLlex.h align.h arith.h assert.h atw.h class.h \
  113. input.h label.h level.h mes.h sizes.h specials.h \
  114. file_info.h tokenname.h l_lint.h
  115. HFILES = $(HSRC) $(GHSRC) $(GHSTRSRC)
  116. # generated files, for 'make clean' only
  117. GENERATED = tokenfile.g Lpars.h LLfiles LL.output lint.out \
  118. print hfiles Cfiles $(GHSRC) $(GSRC) longnames $(LCSRC)
  119. # include files containing ALLOCDEF specifications
  120. OBJ = $(COBJ) $(LOBJ) $(GOBJ) $(EXTRA_O)
  121. SRC = $(CSRC) $(LCSRC) $(GCSRC)
  122. LINT = /usr/bin/lint
  123. LINTFLAGS =
  124. #EXCLEXCLEXCLEXCL
  125. .SUFFIXES: .str .h
  126. .str.h:
  127. ./make.allocd <$*.str >$*.h
  128. Main: Cfiles
  129. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) $(CURRDIR)main ; else EMHOME=$(EMHOME); export EMHOME; ./Resolve main ; fi'
  130. @rm -f nmclash.o a.out
  131. Emain: Cfiles
  132. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) $(CURRDIR)emain ; else EMHOME=$(EMHOME); export EMHOME; ./Resolve emain ; fi'
  133. @rm -f nmclash.o a.out
  134. Omain: Cfiles
  135. rm -f *.o
  136. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "MACH="$(MACH) "EXTRA_O="$(EXTRA_O) "EMHOME="$(EMHOME) "COPTIONS="-DPEEPHOLE $(CURRDIR)omain ; else EMHOME=$(EMHOME); export EMHOME; mach=$(MACH); export mach; ./Resolve omain ; fi'
  137. @rm -f nmclash.o a.out
  138. CEmain: Cfiles
  139. rm -f *.o
  140. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "MACH="$(MACH) "EMHOME="$(EMHOME) "COPTIONS="-DCODE_EXPANDER $(CURRDIR)cemain ; else EMHOME=$(EMHOME); export EMHOME; mach=$(MACH); export mach; ./Resolve cemain ; fi'
  141. @rm -f nmclash.o a.out
  142. Lnt: Cfiles
  143. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) $(CURRDIR)lnt ; else EMHOME=$(EMHOME); export EMHOME; ./Resolve lnt ; fi'
  144. @rm -f nmclash.o a.out
  145. install: Main
  146. rm -f $(EMHOME)/lib/em_cemcom.ansi # $(EMHOME)/man/em_cemcom.6
  147. cp $(CURRDIR)main $(EMHOME)/lib/em_cemcom.ansi
  148. # cp $(CURRDIR)cemcom.1 $(EMHOME)/man/em_cemcom.6
  149. Oinstall: Omain
  150. cp $(CURRDIR)omain $(EMHOME)/lib/em_cemcomO
  151. cmp: Main
  152. -cmp $(CURRDIR)main $(EMHOME)/lib/em_cemcom
  153. -cmp $(CURRDIR)cemcom.1 $(EMHOME)/man/em_cemcom.6
  154. pr:
  155. @pr Makefile make.* char.tab Parameters $(HSRC) $(STRSRC) $(LSRC) $(CSRC)
  156. opr:
  157. make pr | opr
  158. clean:
  159. rm -f $(OBJ)
  160. rm -f $(GENERATED) main
  161. (cd .. ; rm -rf Xsrc)
  162. cflow: Cfiles
  163. $(CFLOW) $(CDEFS) $(SRC)
  164. lint: Cfiles
  165. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make "EMHOME="$(EMHOME) LINT=$(LINT) LINTFLAGS=$(LINTFLAGS) Xlint ; else sh Resolve Xlint ; fi'
  166. @rm -f nmclash.o a.out
  167. longnames: $(SRC) $(HFILES)
  168. sh -c 'if test -f longnames ; then : ; else touch longnames ; fi ; $(PRID) -l7 longnames $? > Xlongnames ; mv Xlongnames longnames'
  169. # entry points not to be used directly
  170. Cfiles: hfiles LLfiles $(GENCFILES) $(GSRC) $(GHSRC) Makefile
  171. echo $(SRC) $(HFILES) > Cfiles
  172. hfiles: ./make.hfiles Parameters
  173. ./make.hfiles Parameters
  174. @touch hfiles
  175. LLfiles: $(LSRC)
  176. $(GEN) $(GENOPTIONS) $(LSRC)
  177. @touch LLfiles
  178. tokenfile.g: tokenname.c make.tokfile
  179. <tokenname.c ./make.tokfile >tokenfile.g
  180. symbol2str.c: tokenname.c make.tokcase
  181. <tokenname.c ./make.tokcase >symbol2str.c
  182. char.c: char.tab
  183. $(TABGEN) -fchar.tab >char.c
  184. next.c: make.next $(STRSRC)
  185. ./make.next $(STRSRC) >next.c
  186. code.h: make.allocd
  187. declar.h: make.allocd
  188. decspecs.h: make.allocd
  189. def.h: make.allocd
  190. expr.h: make.allocd
  191. field.h: make.allocd
  192. idf.h: make.allocd
  193. macro.h: make.allocd
  194. stack.h: make.allocd
  195. stmt.h: make.allocd
  196. struct.h: make.allocd
  197. switch.h: make.allocd
  198. type.h: make.allocd
  199. estack.h: make.allocd
  200. util.h: make.allocd
  201. l_brace.h: make.allocd
  202. l_state.h: make.allocd
  203. l_outdef.h: make.allocd
  204. depend: Cfiles
  205. sed '/^#AUTOAUTO/,$$d' Makefile >Makefile.new
  206. echo '#AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTO' >>Makefile.new
  207. $(MKDEP) $(SRC) | sed 's/\.c:/.o:/' >>Makefile.new
  208. mv Makefile Makefile.old
  209. mv Makefile.new Makefile
  210. #INCLINCLINCLINCL
  211. $(CURRDIR)main: $(OBJ) $(CURRDIR)Makefile
  212. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(LIBS) -o $(CURRDIR)main
  213. size $(CURRDIR)main
  214. $(CURRDIR)emain: $(OBJ) $(CURRDIR)Makefile
  215. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(ELIBS) -o $(CURRDIR)emain
  216. size $(CURRDIR)emain
  217. $(CURRDIR)omain: $(OBJ) $(CURRDIR)Makefile
  218. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(OLIBS) -o $(CURRDIR)omain
  219. size $(CURRDIR)omain
  220. $(CURRDIR)cemain: $(OBJ) $(CURRDIR)Makefile
  221. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(CELIBS) -o $(CURRDIR)cemain
  222. size $(CURRDIR)cemain
  223. $(CURRDIR)lnt: $(OBJ) $(CURRDIR)Makefile
  224. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(LLIBS) -o $(CURRDIR)lnt
  225. size $(CURRDIR)lnt
  226. Xlint: $(SRC)
  227. $(LINT) $(CDEFS) $(LINTFLAGS) $(SRC)
  228. #AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTO
  229. main.o: LLlex.h
  230. main.o: Lpars.h
  231. main.o: align.h
  232. main.o: arith.h
  233. main.o: assert.h
  234. main.o: dbsymtab.h
  235. main.o: debug.h
  236. main.o: declar.h
  237. main.o: file_info.h
  238. main.o: idf.h
  239. main.o: input.h
  240. main.o: inputtype.h
  241. main.o: level.h
  242. main.o: lint.h
  243. main.o: macro.h
  244. main.o: nobitfield.h
  245. main.o: nocross.h
  246. main.o: nopp.h
  247. main.o: proto.h
  248. main.o: sizes.h
  249. main.o: spec_arith.h
  250. main.o: specials.h
  251. main.o: tokenname.h
  252. main.o: trgt_sizes.h
  253. main.o: type.h
  254. main.o: use_tmp.h
  255. idf.o: LLlex.h
  256. idf.o: Lpars.h
  257. idf.o: align.h
  258. idf.o: arith.h
  259. idf.o: assert.h
  260. idf.o: botch_free.h
  261. idf.o: dbsymtab.h
  262. idf.o: debug.h
  263. idf.o: declar.h
  264. idf.o: decspecs.h
  265. idf.o: def.h
  266. idf.o: file_info.h
  267. idf.o: idf.h
  268. idf.o: idfsize.h
  269. idf.o: label.h
  270. idf.o: level.h
  271. idf.o: lint.h
  272. idf.o: nobitfield.h
  273. idf.o: nocross.h
  274. idf.o: nopp.h
  275. idf.o: nparams.h
  276. idf.o: proto.h
  277. idf.o: sizes.h
  278. idf.o: spec_arith.h
  279. idf.o: specials.h
  280. idf.o: stack.h
  281. idf.o: struct.h
  282. idf.o: trgt_sizes.h
  283. idf.o: type.h
  284. declarator.o: Lpars.h
  285. declarator.o: arith.h
  286. declarator.o: botch_free.h
  287. declarator.o: dbsymtab.h
  288. declarator.o: debug.h
  289. declarator.o: declar.h
  290. declarator.o: def.h
  291. declarator.o: expr.h
  292. declarator.o: idf.h
  293. declarator.o: label.h
  294. declarator.o: level.h
  295. declarator.o: lint.h
  296. declarator.o: nobitfield.h
  297. declarator.o: nocross.h
  298. declarator.o: nopp.h
  299. declarator.o: proto.h
  300. declarator.o: sizes.h
  301. declarator.o: spec_arith.h
  302. declarator.o: trgt_sizes.h
  303. declarator.o: type.h
  304. decspecs.o: Lpars.h
  305. decspecs.o: arith.h
  306. decspecs.o: assert.h
  307. decspecs.o: dbsymtab.h
  308. decspecs.o: debug.h
  309. decspecs.o: decspecs.h
  310. decspecs.o: def.h
  311. decspecs.o: level.h
  312. decspecs.o: lint.h
  313. decspecs.o: nobitfield.h
  314. decspecs.o: spec_arith.h
  315. decspecs.o: type.h
  316. struct.o: LLlex.h
  317. struct.o: Lpars.h
  318. struct.o: align.h
  319. struct.o: arith.h
  320. struct.o: assert.h
  321. struct.o: botch_free.h
  322. struct.o: dbsymtab.h
  323. struct.o: debug.h
  324. struct.o: def.h
  325. struct.o: field.h
  326. struct.o: file_info.h
  327. struct.o: idf.h
  328. struct.o: level.h
  329. struct.o: lint.h
  330. struct.o: nobitfield.h
  331. struct.o: nocross.h
  332. struct.o: nopp.h
  333. struct.o: proto.h
  334. struct.o: sizes.h
  335. struct.o: spec_arith.h
  336. struct.o: stack.h
  337. struct.o: struct.h
  338. struct.o: trgt_sizes.h
  339. struct.o: type.h
  340. expr.o: LLlex.h
  341. expr.o: Lpars.h
  342. expr.o: arith.h
  343. expr.o: assert.h
  344. expr.o: botch_free.h
  345. expr.o: dbsymtab.h
  346. expr.o: debug.h
  347. expr.o: declar.h
  348. expr.o: decspecs.h
  349. expr.o: def.h
  350. expr.o: expr.h
  351. expr.o: file_info.h
  352. expr.o: idf.h
  353. expr.o: label.h
  354. expr.o: level.h
  355. expr.o: lint.h
  356. expr.o: nobitfield.h
  357. expr.o: nocross.h
  358. expr.o: nopp.h
  359. expr.o: sizes.h
  360. expr.o: spec_arith.h
  361. expr.o: trgt_sizes.h
  362. expr.o: type.h
  363. expr.o: use_tmp.h
  364. ch3.o: Lpars.h
  365. ch3.o: arith.h
  366. ch3.o: assert.h
  367. ch3.o: dbsymtab.h
  368. ch3.o: debug.h
  369. ch3.o: def.h
  370. ch3.o: expr.h
  371. ch3.o: file_info.h
  372. ch3.o: idf.h
  373. ch3.o: label.h
  374. ch3.o: lint.h
  375. ch3.o: nobitfield.h
  376. ch3.o: nopp.h
  377. ch3.o: proto.h
  378. ch3.o: spec_arith.h
  379. ch3.o: struct.h
  380. ch3.o: type.h
  381. ch3bin.o: Lpars.h
  382. ch3bin.o: arith.h
  383. ch3bin.o: botch_free.h
  384. ch3bin.o: dbsymtab.h
  385. ch3bin.o: debug.h
  386. ch3bin.o: expr.h
  387. ch3bin.o: idf.h
  388. ch3bin.o: label.h
  389. ch3bin.o: lint.h
  390. ch3bin.o: nobitfield.h
  391. ch3bin.o: nocross.h
  392. ch3bin.o: nopp.h
  393. ch3bin.o: sizes.h
  394. ch3bin.o: spec_arith.h
  395. ch3bin.o: struct.h
  396. ch3bin.o: trgt_sizes.h
  397. ch3bin.o: type.h
  398. cstoper.o: Lpars.h
  399. cstoper.o: arith.h
  400. cstoper.o: assert.h
  401. cstoper.o: dbsymtab.h
  402. cstoper.o: debug.h
  403. cstoper.o: expr.h
  404. cstoper.o: idf.h
  405. cstoper.o: label.h
  406. cstoper.o: nobitfield.h
  407. cstoper.o: nocross.h
  408. cstoper.o: nopp.h
  409. cstoper.o: sizes.h
  410. cstoper.o: spec_arith.h
  411. cstoper.o: trgt_sizes.h
  412. cstoper.o: type.h
  413. fltcstoper.o: Lpars.h
  414. fltcstoper.o: arith.h
  415. fltcstoper.o: assert.h
  416. fltcstoper.o: dbsymtab.h
  417. fltcstoper.o: debug.h
  418. fltcstoper.o: expr.h
  419. fltcstoper.o: idf.h
  420. fltcstoper.o: label.h
  421. fltcstoper.o: nobitfield.h
  422. fltcstoper.o: nocross.h
  423. fltcstoper.o: nopp.h
  424. fltcstoper.o: sizes.h
  425. fltcstoper.o: spec_arith.h
  426. fltcstoper.o: trgt_sizes.h
  427. fltcstoper.o: type.h
  428. arith.o: Lpars.h
  429. arith.o: arith.h
  430. arith.o: assert.h
  431. arith.o: dbsymtab.h
  432. arith.o: debug.h
  433. arith.o: expr.h
  434. arith.o: field.h
  435. arith.o: idf.h
  436. arith.o: label.h
  437. arith.o: lint.h
  438. arith.o: mes.h
  439. arith.o: nobitfield.h
  440. arith.o: nocross.h
  441. arith.o: nopp.h
  442. arith.o: proto.h
  443. arith.o: sizes.h
  444. arith.o: spec_arith.h
  445. arith.o: trgt_sizes.h
  446. arith.o: type.h
  447. code.o: Lpars.h
  448. code.o: arith.h
  449. code.o: assert.h
  450. code.o: atw.h
  451. code.o: botch_free.h
  452. code.o: code.h
  453. code.o: dataflow.h
  454. code.o: dbsymtab.h
  455. code.o: debug.h
  456. code.o: declar.h
  457. code.o: decspecs.h
  458. code.o: def.h
  459. code.o: expr.h
  460. code.o: file_info.h
  461. code.o: idf.h
  462. code.o: l_lint.h
  463. code.o: label.h
  464. code.o: level.h
  465. code.o: lint.h
  466. code.o: nobitfield.h
  467. code.o: nocross.h
  468. code.o: nopp.h
  469. code.o: sizes.h
  470. code.o: spec_arith.h
  471. code.o: specials.h
  472. code.o: stack.h
  473. code.o: stmt.h
  474. code.o: trgt_sizes.h
  475. code.o: type.h
  476. code.o: use_tmp.h
  477. dumpidf.o: Lpars.h
  478. dumpidf.o: arith.h
  479. dumpidf.o: dbsymtab.h
  480. dumpidf.o: debug.h
  481. dumpidf.o: declar.h
  482. dumpidf.o: def.h
  483. dumpidf.o: expr.h
  484. dumpidf.o: field.h
  485. dumpidf.o: idf.h
  486. dumpidf.o: label.h
  487. dumpidf.o: lint.h
  488. dumpidf.o: nobitfield.h
  489. dumpidf.o: nopp.h
  490. dumpidf.o: proto.h
  491. dumpidf.o: spec_arith.h
  492. dumpidf.o: stack.h
  493. dumpidf.o: static.h
  494. dumpidf.o: struct.h
  495. dumpidf.o: type.h
  496. error.o: LLlex.h
  497. error.o: arith.h
  498. error.o: debug.h
  499. error.o: def.h
  500. error.o: errout.h
  501. error.o: expr.h
  502. error.o: file_info.h
  503. error.o: label.h
  504. error.o: lint.h
  505. error.o: nopp.h
  506. error.o: spec_arith.h
  507. error.o: tokenname.h
  508. field.o: Lpars.h
  509. field.o: align.h
  510. field.o: arith.h
  511. field.o: assert.h
  512. field.o: code.h
  513. field.o: dbsymtab.h
  514. field.o: debug.h
  515. field.o: expr.h
  516. field.o: field.h
  517. field.o: idf.h
  518. field.o: label.h
  519. field.o: lint.h
  520. field.o: nobitfield.h
  521. field.o: nocross.h
  522. field.o: nopp.h
  523. field.o: sizes.h
  524. field.o: spec_arith.h
  525. field.o: trgt_sizes.h
  526. field.o: type.h
  527. tokenname.o: LLlex.h
  528. tokenname.o: Lpars.h
  529. tokenname.o: arith.h
  530. tokenname.o: file_info.h
  531. tokenname.o: idf.h
  532. tokenname.o: nopp.h
  533. tokenname.o: spec_arith.h
  534. tokenname.o: tokenname.h
  535. LLlex.o: LLlex.h
  536. LLlex.o: Lpars.h
  537. LLlex.o: arith.h
  538. LLlex.o: assert.h
  539. LLlex.o: class.h
  540. LLlex.o: debug.h
  541. LLlex.o: def.h
  542. LLlex.o: file_info.h
  543. LLlex.o: idf.h
  544. LLlex.o: idfsize.h
  545. LLlex.o: input.h
  546. LLlex.o: lint.h
  547. LLlex.o: macro.h
  548. LLlex.o: nocross.h
  549. LLlex.o: nopp.h
  550. LLlex.o: numsize.h
  551. LLlex.o: sizes.h
  552. LLlex.o: spec_arith.h
  553. LLlex.o: strsize.h
  554. LLlex.o: trgt_sizes.h
  555. LLmessage.o: LLlex.h
  556. LLmessage.o: Lpars.h
  557. LLmessage.o: arith.h
  558. LLmessage.o: file_info.h
  559. LLmessage.o: idf.h
  560. LLmessage.o: nopp.h
  561. LLmessage.o: spec_arith.h
  562. input.o: file_info.h
  563. input.o: input.h
  564. input.o: inputtype.h
  565. input.o: nopp.h
  566. domacro.o: LLlex.h
  567. domacro.o: Lpars.h
  568. domacro.o: arith.h
  569. domacro.o: assert.h
  570. domacro.o: botch_free.h
  571. domacro.o: class.h
  572. domacro.o: debug.h
  573. domacro.o: file_info.h
  574. domacro.o: idf.h
  575. domacro.o: idfsize.h
  576. domacro.o: ifdepth.h
  577. domacro.o: input.h
  578. domacro.o: macbuf.h
  579. domacro.o: macro.h
  580. domacro.o: nopp.h
  581. domacro.o: nparams.h
  582. domacro.o: parbufsize.h
  583. domacro.o: replace.h
  584. domacro.o: spec_arith.h
  585. domacro.o: textsize.h
  586. replace.o: LLlex.h
  587. replace.o: arith.h
  588. replace.o: assert.h
  589. replace.o: class.h
  590. replace.o: debug.h
  591. replace.o: file_info.h
  592. replace.o: idf.h
  593. replace.o: idfsize.h
  594. replace.o: input.h
  595. replace.o: macbuf.h
  596. replace.o: macro.h
  597. replace.o: nopp.h
  598. replace.o: nparams.h
  599. replace.o: numsize.h
  600. replace.o: pathlength.h
  601. replace.o: replace.h
  602. replace.o: spec_arith.h
  603. replace.o: static.h
  604. replace.o: strsize.h
  605. init.o: class.h
  606. init.o: idf.h
  607. init.o: macro.h
  608. init.o: nopp.h
  609. options.o: align.h
  610. options.o: arith.h
  611. options.o: botch_free.h
  612. options.o: class.h
  613. options.o: dataflow.h
  614. options.o: dbsymtab.h
  615. options.o: idf.h
  616. options.o: idfsize.h
  617. options.o: lint.h
  618. options.o: macro.h
  619. options.o: nobitfield.h
  620. options.o: nocross.h
  621. options.o: nopp.h
  622. options.o: sizes.h
  623. options.o: spec_arith.h
  624. options.o: trgt_sizes.h
  625. options.o: use_tmp.h
  626. skip.o: LLlex.h
  627. skip.o: arith.h
  628. skip.o: class.h
  629. skip.o: file_info.h
  630. skip.o: input.h
  631. skip.o: nopp.h
  632. skip.o: spec_arith.h
  633. stack.o: Lpars.h
  634. stack.o: arith.h
  635. stack.o: botch_free.h
  636. stack.o: dbsymtab.h
  637. stack.o: debug.h
  638. stack.o: def.h
  639. stack.o: idf.h
  640. stack.o: level.h
  641. stack.o: lint.h
  642. stack.o: mes.h
  643. stack.o: nobitfield.h
  644. stack.o: nopp.h
  645. stack.o: spec_arith.h
  646. stack.o: stack.h
  647. stack.o: struct.h
  648. stack.o: type.h
  649. type.o: Lpars.h
  650. type.o: align.h
  651. type.o: arith.h
  652. type.o: botch_free.h
  653. type.o: dbsymtab.h
  654. type.o: debug.h
  655. type.o: decspecs.h
  656. type.o: def.h
  657. type.o: idf.h
  658. type.o: lint.h
  659. type.o: nobitfield.h
  660. type.o: nocross.h
  661. type.o: nopp.h
  662. type.o: proto.h
  663. type.o: sizes.h
  664. type.o: spec_arith.h
  665. type.o: trgt_sizes.h
  666. type.o: type.h
  667. ch3mon.o: Lpars.h
  668. ch3mon.o: arith.h
  669. ch3mon.o: botch_free.h
  670. ch3mon.o: dbsymtab.h
  671. ch3mon.o: debug.h
  672. ch3mon.o: def.h
  673. ch3mon.o: expr.h
  674. ch3mon.o: idf.h
  675. ch3mon.o: label.h
  676. ch3mon.o: lint.h
  677. ch3mon.o: nobitfield.h
  678. ch3mon.o: nocross.h
  679. ch3mon.o: nopp.h
  680. ch3mon.o: sizes.h
  681. ch3mon.o: spec_arith.h
  682. ch3mon.o: trgt_sizes.h
  683. ch3mon.o: type.h
  684. label.o: Lpars.h
  685. label.o: arith.h
  686. label.o: dbsymtab.h
  687. label.o: def.h
  688. label.o: idf.h
  689. label.o: label.h
  690. label.o: level.h
  691. label.o: lint.h
  692. label.o: nobitfield.h
  693. label.o: nopp.h
  694. label.o: spec_arith.h
  695. label.o: type.h
  696. eval.o: Lpars.h
  697. eval.o: align.h
  698. eval.o: arith.h
  699. eval.o: assert.h
  700. eval.o: atw.h
  701. eval.o: code.h
  702. eval.o: dataflow.h
  703. eval.o: dbsymtab.h
  704. eval.o: debug.h
  705. eval.o: def.h
  706. eval.o: expr.h
  707. eval.o: idf.h
  708. eval.o: label.h
  709. eval.o: level.h
  710. eval.o: lint.h
  711. eval.o: mes.h
  712. eval.o: nobitfield.h
  713. eval.o: nocross.h
  714. eval.o: nopp.h
  715. eval.o: sizes.h
  716. eval.o: spec_arith.h
  717. eval.o: specials.h
  718. eval.o: stack.h
  719. eval.o: trgt_sizes.h
  720. eval.o: type.h
  721. switch.o: Lpars.h
  722. switch.o: arith.h
  723. switch.o: assert.h
  724. switch.o: botch_free.h
  725. switch.o: code.h
  726. switch.o: dbsymtab.h
  727. switch.o: debug.h
  728. switch.o: density.h
  729. switch.o: expr.h
  730. switch.o: idf.h
  731. switch.o: label.h
  732. switch.o: nobitfield.h
  733. switch.o: nocross.h
  734. switch.o: nopp.h
  735. switch.o: sizes.h
  736. switch.o: spec_arith.h
  737. switch.o: switch.h
  738. switch.o: trgt_sizes.h
  739. switch.o: type.h
  740. conversion.o: Lpars.h
  741. conversion.o: arith.h
  742. conversion.o: dbsymtab.h
  743. conversion.o: lint.h
  744. conversion.o: nobitfield.h
  745. conversion.o: nocross.h
  746. conversion.o: sizes.h
  747. conversion.o: spec_arith.h
  748. conversion.o: trgt_sizes.h
  749. conversion.o: type.h
  750. util.o: Lpars.h
  751. util.o: align.h
  752. util.o: debug.h
  753. util.o: def.h
  754. util.o: lint.h
  755. util.o: nocross.h
  756. util.o: regcount.h
  757. util.o: sizes.h
  758. util.o: stack.h
  759. util.o: trgt_sizes.h
  760. util.o: use_tmp.h
  761. util.o: util.h
  762. proto.o: Lpars.h
  763. proto.o: align.h
  764. proto.o: arith.h
  765. proto.o: assert.h
  766. proto.o: botch_free.h
  767. proto.o: dbsymtab.h
  768. proto.o: debug.h
  769. proto.o: declar.h
  770. proto.o: decspecs.h
  771. proto.o: def.h
  772. proto.o: expr.h
  773. proto.o: idf.h
  774. proto.o: idfsize.h
  775. proto.o: label.h
  776. proto.o: level.h
  777. proto.o: lint.h
  778. proto.o: nobitfield.h
  779. proto.o: nocross.h
  780. proto.o: nopp.h
  781. proto.o: nparams.h
  782. proto.o: proto.h
  783. proto.o: spec_arith.h
  784. proto.o: stack.h
  785. proto.o: struct.h
  786. proto.o: trgt_sizes.h
  787. proto.o: type.h
  788. pragma.o: debug.h
  789. pragma.o: idf.h
  790. pragma.o: nopp.h
  791. blocks.o: Lpars.h
  792. blocks.o: align.h
  793. blocks.o: arith.h
  794. blocks.o: atw.h
  795. blocks.o: label.h
  796. blocks.o: lint.h
  797. blocks.o: nocross.h
  798. blocks.o: sizes.h
  799. blocks.o: spec_arith.h
  800. blocks.o: stack.h
  801. blocks.o: trgt_sizes.h
  802. dataflow.o: dataflow.h
  803. stab.o: LLlex.h
  804. stab.o: Lpars.h
  805. stab.o: dbsymtab.h
  806. stab.o: def.h
  807. stab.o: field.h
  808. stab.o: file_info.h
  809. stab.o: idf.h
  810. stab.o: level.h
  811. stab.o: lint.h
  812. stab.o: nobitfield.h
  813. stab.o: nopp.h
  814. stab.o: stack.h
  815. stab.o: struct.h
  816. stab.o: type.h
  817. l_lint.o: LLlex.h
  818. l_lint.o: Lpars.h
  819. l_lint.o: arith.h
  820. l_lint.o: assert.h
  821. l_lint.o: code.h
  822. l_lint.o: dbsymtab.h
  823. l_lint.o: debug.h
  824. l_lint.o: def.h
  825. l_lint.o: expr.h
  826. l_lint.o: file_info.h
  827. l_lint.o: idf.h
  828. l_lint.o: interface.h
  829. l_lint.o: l_lint.h
  830. l_lint.o: l_outdef.h
  831. l_lint.o: l_state.h
  832. l_lint.o: label.h
  833. l_lint.o: level.h
  834. l_lint.o: lint.h
  835. l_lint.o: nobitfield.h
  836. l_lint.o: nopp.h
  837. l_lint.o: spec_arith.h
  838. l_lint.o: stack.h
  839. l_lint.o: type.h
  840. l_states.o: LLlex.h
  841. l_states.o: Lpars.h
  842. l_states.o: arith.h
  843. l_states.o: assert.h
  844. l_states.o: code.h
  845. l_states.o: dbsymtab.h
  846. l_states.o: debug.h
  847. l_states.o: def.h
  848. l_states.o: expr.h
  849. l_states.o: file_info.h
  850. l_states.o: idf.h
  851. l_states.o: interface.h
  852. l_states.o: l_brace.h
  853. l_states.o: l_comment.h
  854. l_states.o: l_lint.h
  855. l_states.o: l_outdef.h
  856. l_states.o: l_state.h
  857. l_states.o: label.h
  858. l_states.o: level.h
  859. l_states.o: lint.h
  860. l_states.o: nobitfield.h
  861. l_states.o: nopp.h
  862. l_states.o: spec_arith.h
  863. l_states.o: stack.h
  864. l_states.o: type.h
  865. l_misc.o: LLlex.h
  866. l_misc.o: Lpars.h
  867. l_misc.o: arith.h
  868. l_misc.o: code.h
  869. l_misc.o: dbsymtab.h
  870. l_misc.o: debug.h
  871. l_misc.o: def.h
  872. l_misc.o: expr.h
  873. l_misc.o: file_info.h
  874. l_misc.o: idf.h
  875. l_misc.o: interface.h
  876. l_misc.o: l_state.h
  877. l_misc.o: label.h
  878. l_misc.o: level.h
  879. l_misc.o: lint.h
  880. l_misc.o: nobitfield.h
  881. l_misc.o: nopp.h
  882. l_misc.o: spec_arith.h
  883. l_misc.o: stack.h
  884. l_misc.o: type.h
  885. l_ev_ord.o: LLlex.h
  886. l_ev_ord.o: Lpars.h
  887. l_ev_ord.o: arith.h
  888. l_ev_ord.o: assert.h
  889. l_ev_ord.o: code.h
  890. l_ev_ord.o: dbsymtab.h
  891. l_ev_ord.o: debug.h
  892. l_ev_ord.o: def.h
  893. l_ev_ord.o: expr.h
  894. l_ev_ord.o: file_info.h
  895. l_ev_ord.o: idf.h
  896. l_ev_ord.o: interface.h
  897. l_ev_ord.o: l_lint.h
  898. l_ev_ord.o: l_state.h
  899. l_ev_ord.o: label.h
  900. l_ev_ord.o: level.h
  901. l_ev_ord.o: lint.h
  902. l_ev_ord.o: nobitfield.h
  903. l_ev_ord.o: nopp.h
  904. l_ev_ord.o: spec_arith.h
  905. l_ev_ord.o: stack.h
  906. l_ev_ord.o: type.h
  907. l_outdef.o: LLlex.h
  908. l_outdef.o: Lpars.h
  909. l_outdef.o: arith.h
  910. l_outdef.o: assert.h
  911. l_outdef.o: code.h
  912. l_outdef.o: dbsymtab.h
  913. l_outdef.o: debug.h
  914. l_outdef.o: def.h
  915. l_outdef.o: expr.h
  916. l_outdef.o: field.h
  917. l_outdef.o: file_info.h
  918. l_outdef.o: idf.h
  919. l_outdef.o: interface.h
  920. l_outdef.o: l_class.h
  921. l_outdef.o: l_comment.h
  922. l_outdef.o: l_lint.h
  923. l_outdef.o: l_outdef.h
  924. l_outdef.o: label.h
  925. l_outdef.o: level.h
  926. l_outdef.o: lint.h
  927. l_outdef.o: nobitfield.h
  928. l_outdef.o: nopp.h
  929. l_outdef.o: spec_arith.h
  930. l_outdef.o: stack.h
  931. l_outdef.o: struct.h
  932. l_outdef.o: type.h
  933. l_comment.o: arith.h
  934. l_comment.o: interface.h
  935. l_comment.o: l_comment.h
  936. l_comment.o: l_state.h
  937. l_comment.o: lint.h
  938. l_comment.o: spec_arith.h
  939. l_dummy.o: arith.h
  940. l_dummy.o: label.h
  941. l_dummy.o: lint.h
  942. l_dummy.o: spec_arith.h
  943. tokenfile.o: Lpars.h
  944. declar.o: LLlex.h
  945. declar.o: Lpars.h
  946. declar.o: arith.h
  947. declar.o: code.h
  948. declar.o: dbsymtab.h
  949. declar.o: debug.h
  950. declar.o: declar.h
  951. declar.o: decspecs.h
  952. declar.o: def.h
  953. declar.o: expr.h
  954. declar.o: field.h
  955. declar.o: file_info.h
  956. declar.o: idf.h
  957. declar.o: l_lint.h
  958. declar.o: l_state.h
  959. declar.o: label.h
  960. declar.o: level.h
  961. declar.o: lint.h
  962. declar.o: nobitfield.h
  963. declar.o: nocross.h
  964. declar.o: nopp.h
  965. declar.o: proto.h
  966. declar.o: sizes.h
  967. declar.o: spec_arith.h
  968. declar.o: struct.h
  969. declar.o: trgt_sizes.h
  970. declar.o: type.h
  971. statement.o: LLlex.h
  972. statement.o: Lpars.h
  973. statement.o: arith.h
  974. statement.o: botch_free.h
  975. statement.o: code.h
  976. statement.o: dbsymtab.h
  977. statement.o: debug.h
  978. statement.o: def.h
  979. statement.o: expr.h
  980. statement.o: file_info.h
  981. statement.o: idf.h
  982. statement.o: l_lint.h
  983. statement.o: l_state.h
  984. statement.o: label.h
  985. statement.o: lint.h
  986. statement.o: nobitfield.h
  987. statement.o: nopp.h
  988. statement.o: spec_arith.h
  989. statement.o: stack.h
  990. statement.o: type.h
  991. expression.o: LLlex.h
  992. expression.o: Lpars.h
  993. expression.o: arith.h
  994. expression.o: code.h
  995. expression.o: dbsymtab.h
  996. expression.o: debug.h
  997. expression.o: expr.h
  998. expression.o: file_info.h
  999. expression.o: idf.h
  1000. expression.o: label.h
  1001. expression.o: lint.h
  1002. expression.o: nobitfield.h
  1003. expression.o: nocross.h
  1004. expression.o: nopp.h
  1005. expression.o: sizes.h
  1006. expression.o: spec_arith.h
  1007. expression.o: trgt_sizes.h
  1008. expression.o: type.h
  1009. program.o: LLlex.h
  1010. program.o: Lpars.h
  1011. program.o: arith.h
  1012. program.o: code.h
  1013. program.o: dbsymtab.h
  1014. program.o: debug.h
  1015. program.o: declar.h
  1016. program.o: decspecs.h
  1017. program.o: def.h
  1018. program.o: expr.h
  1019. program.o: file_info.h
  1020. program.o: idf.h
  1021. program.o: l_state.h
  1022. program.o: label.h
  1023. program.o: lint.h
  1024. program.o: nobitfield.h
  1025. program.o: nopp.h
  1026. program.o: spec_arith.h
  1027. program.o: type.h
  1028. Lpars.o: Lpars.h
  1029. ival.o: LLlex.h
  1030. ival.o: Lpars.h
  1031. ival.o: arith.h
  1032. ival.o: assert.h
  1033. ival.o: dbsymtab.h
  1034. ival.o: debug.h
  1035. ival.o: def.h
  1036. ival.o: estack.h
  1037. ival.o: expr.h
  1038. ival.o: field.h
  1039. ival.o: file_info.h
  1040. ival.o: idf.h
  1041. ival.o: l_lint.h
  1042. ival.o: label.h
  1043. ival.o: level.h
  1044. ival.o: lint.h
  1045. ival.o: nobitfield.h
  1046. ival.o: nocross.h
  1047. ival.o: nopp.h
  1048. ival.o: proto.h
  1049. ival.o: sizes.h
  1050. ival.o: spec_arith.h
  1051. ival.o: struct.h
  1052. ival.o: trgt_sizes.h
  1053. ival.o: type.h
  1054. char.o: class.h
  1055. symbol2str.o: Lpars.h
  1056. next.o: debug.h