Makefile 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  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. MKDEP = $(EMHOME)/bin/mkdep
  6. PRID = $(EMHOME)/bin/prid
  7. CID = $(EMHOME)/bin/cid
  8. # Libraries and EM interface definitions
  9. SYSLIB = $(EMHOME)/modules/lib/libsystem.a
  10. EMKLIB = $(EMHOME)/modules/lib/libemk.a
  11. EMELIB = $(EMHOME)/modules/lib/libeme.a
  12. STRLIB = $(EMHOME)/modules/lib/libstring.a
  13. PRTLIB = $(EMHOME)/modules/lib/libprint.a
  14. EMMESLIB = $(EMHOME)/modules/lib/libem_mes.a
  15. INPLIB = $(EMHOME)/modules/lib/libinput.a
  16. ALLOCLIB = $(EMHOME)/modules/lib/liballoc.a
  17. MALLOC = $(EMHOME)/modules/lib/malloc.o
  18. LIBS = $(INPLIB) $(EMMESLIB) $(EMKLIB) $(PRTLIB) $(STRLIB) \
  19. $(ALLOCLIB) $(MALLOC) $(SYSLIB)
  20. ELIBS = $(INPLIB) $(EMMESLIB) $(EMELIB) $(PRTLIB) $(STRLIB) \
  21. $(ALLOCLIB) $(MALLOC) $(SYSLIB)
  22. LIB_INCLUDES = -I$(EMHOME)/modules/h -I$(EMHOME)/modules/pkg
  23. EM_INCLUDES = -I$(EMHOME)/h
  24. SYSLLIB = $(EMHOME)/modules/lib/llib-lsys.ln
  25. EMKLLIB = $(EMHOME)/modules/lib/llib-lemk.ln
  26. EMELLIB = $(EMHOME)/modules/lib/llib-leme.ln
  27. STRLLIB = $(EMHOME)/modules/lib/llib-lstr.ln
  28. PRTLLIB = $(EMHOME)/modules/lib/llib-lprint.ln
  29. EMMESLLIB = $(EMHOME)/modules/lib/llib-lmes.ln
  30. INPLLIB = $(EMHOME)/modules/lib/llib-linput.ln
  31. ALLOCLLIB = $(EMHOME)/modules/lib/llib-lalloc.ln
  32. LINTLIBS =
  33. #LINTLIBS = $(EMMESLLIB) $(EMKLLIB) $(PRTLLIB) $(STRLLIB) $(SYSLLIB) $(ALLOCLLIB)
  34. CURRDIR = .
  35. COPTIONS =
  36. # What parser generator to use and how
  37. GEN = $(EMHOME)/bin/LLgen
  38. GENOPTIONS = -v
  39. # Special #defines during compilation
  40. CDEFS = $(EM_INCLUDES) $(LIB_INCLUDES)
  41. CFLAGS = $(CDEFS) $(COPTIONS) -O
  42. LDFLAGS = -i
  43. # Grammar files and their objects
  44. LSRC = tokenfile.g declar.g statement.g expression.g program.g ival.g
  45. LCSRC = tokenfile.c declar.c statement.c expression.c program.c Lpars.c ival.c
  46. LOBJ = tokenfile.o declar.o statement.o expression.o program.o Lpars.o ival.o
  47. # Objects of hand-written C files
  48. CSRC = main.c idf.c declarator.c decspecs.c struct.c \
  49. expr.c ch7.c ch7bin.c cstoper.c arith.c \
  50. asm.c code.c dumpidf.c error.c field.c\
  51. tokenname.c LLlex.c LLmessage.c \
  52. input.c domacro.c replace.c init.c options.c \
  53. scan.c skip.c stack.c type.c ch7mon.c label.c eval.c \
  54. switch.c conversion.c \
  55. blocks.c dataflow.c Version.c
  56. COBJ = main.o idf.o declarator.o decspecs.o struct.o \
  57. expr.o ch7.o ch7bin.o cstoper.o arith.o \
  58. asm.o code.o dumpidf.o error.o field.o\
  59. tokenname.o LLlex.o LLmessage.o \
  60. input.o domacro.o replace.o init.o options.o \
  61. scan.o skip.o stack.o type.o ch7mon.o label.o eval.o \
  62. switch.o conversion.o \
  63. blocks.o dataflow.o Version.o
  64. # Objects of other generated C files
  65. GCSRC = char.c symbol2str.c next.c
  66. GOBJ = char.o symbol2str.o next.o
  67. STRSRC = code.str declar.str decspecs.str def.str expr.str field.str \
  68. estack.str \
  69. idf.str macro.str stack.str stmt.str struct.str switch.str type.str
  70. # generated source files
  71. GHSTRSRC = code.h declar.h decspecs.h def.h expr.h field.h \
  72. estack.h \
  73. idf.h macro.h stack.h stmt.h struct.h switch.h type.h
  74. GSRC = $(GCSRC) $(GHSTRSRC)
  75. # .h files generated by `make hfiles LLfiles'; PLEASE KEEP THIS UP-TO-DATE!
  76. GHSRC = botch_free.h dataflow.h debug.h density.h errout.h \
  77. idfsize.h ifdepth.h inputtype.h lapbuf.h \
  78. nobitfield.h nofloat.h nopp.h noRoption.h nocross.h \
  79. nparams.h numsize.h parbufsize.h pathlength.h Lpars.h \
  80. strsize.h target_sizes.h textsize.h use_tmp.h spec_arith.h static.h
  81. HSRC = LLlex.h align.h arith.h assert.h atw.h class.h faulty.h \
  82. input.h interface.h label.h level.h mes.h sizes.h specials.h \
  83. file_info.h tokenname.h
  84. HFILES = $(HSRC) $(GHSRC) $(GHSTRSRC)
  85. # generated files, for 'make clean' only
  86. GENERATED = tab tokenfile.g Lpars.h LLfiles LL.output lint.out \
  87. print Xref lxref hfiles Cfiles $(GHSRC) $(GSRC) longnames $(LCSRC)
  88. # include files containing ALLOCDEF specifications
  89. OBJ = $(COBJ) $(LOBJ) $(GOBJ)
  90. SRC = $(CSRC) $(LCSRC) $(GCSRC)
  91. #EXCLEXCLEXCLEXCL
  92. .SUFFIXES: .str .h
  93. .str.h:
  94. ./make.allocd <$*.str >$*.h
  95. Main: Cfiles
  96. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make $(CURRDIR)/main ; else sh Resolve main ; fi'
  97. @rm -f nmclash.o a.out
  98. Emain: Cfiles
  99. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make $(CURRDIR)/emain ; else sh Resolve emain ; fi'
  100. @rm -f nmclash.o a.out
  101. install: Main
  102. rm -f $(EMHOME)/lib/em_cemcom $(EMHOME)/man/em_cemcom.6
  103. cp $(CURRDIR)/main $(EMHOME)/lib/em_cemcom
  104. cp $(CURRDIR)/cemcom.1 $(EMHOME)/man/em_cemcom.6
  105. cmp: Main
  106. -cmp $(CURRDIR)/main $(EMHOME)/lib/em_cemcom
  107. -cmp $(CURRDIR)/cemcom.1 $(EMHOME)/man/em_cemcom.6
  108. pr:
  109. @pr makefile make.* tab.c char.tab Parameters $(HSRC) $(STRSRC) $(LSRC) $(CSRC)
  110. opr:
  111. make pr | opr
  112. clean:
  113. rm -f $(OBJ) $(GENERATED) main
  114. (cd .. ; rm -rf Xsrc)
  115. lint: Cfiles
  116. sh -c 'if $(CC) nmclash.c > /dev/null 2>&1 ; then make Xlint ; else sh Resolve Xlint ; fi'
  117. @rm -f nmclash.o a.out
  118. longnames: $(SRC) $(HFILES)
  119. sh -c 'if test -f longnames ; then : ; else touch longnames ; fi ; $(PRID) -l7 longnames $? > Xlongnames ; mv Xlongnames longnames'
  120. # entry points not to be used directly
  121. Cfiles: hfiles LLfiles $(GENCFILES) $(GSRC) $(GHSRC) makefile
  122. echo $(SRC) $(HFILES) > Cfiles
  123. hfiles: ./make.hfiles Parameters
  124. ./make.hfiles Parameters
  125. @touch hfiles
  126. LLfiles: $(LSRC)
  127. $(GEN) $(GENOPTIONS) $(LSRC)
  128. @touch LLfiles
  129. tokenfile.g: tokenname.c make.tokfile
  130. <tokenname.c ./make.tokfile >tokenfile.g
  131. symbol2str.c: tokenname.c make.tokcase
  132. <tokenname.c ./make.tokcase >symbol2str.c
  133. char.c: tab char.tab
  134. tab -fchar.tab >char.c
  135. tab:
  136. $(CC) tab.c -o tab
  137. next.c: make.next $(STRSRC)
  138. ./make.next $(STRSRC) >next.c
  139. code.h: make.allocd
  140. declar.h: make.allocd
  141. decspecs.h: make.allocd
  142. def.h: make.allocd
  143. expr.h: make.allocd
  144. field.h: make.allocd
  145. idf.h: make.allocd
  146. macro.h: make.allocd
  147. stack.h: make.allocd
  148. stmt.h: make.allocd
  149. struct.h: make.allocd
  150. switch.h: make.allocd
  151. type.h: make.allocd
  152. estack.h: make.allocd
  153. depend: Cfiles
  154. sed '/^#AUTOAUTO/,$$d' makefile >makefile.new
  155. echo '#AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTO' >>makefile.new
  156. $(MKDEP) $(SRC) | sed 's/\.c:/.o:/' >>makefile.new
  157. mv makefile makefile.old
  158. mv makefile.new makefile
  159. #INCLINCLINCLINCL
  160. $(CURRDIR)/main: $(OBJ) $(CURRDIR)/makefile
  161. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(LIBS) -o $(CURRDIR)/main
  162. size $(CURRDIR)/main
  163. $(CURRDIR)/emain: $(OBJ) $(CURRDIR)/makefile
  164. $(CC) $(COPTIONS) $(LDFLAGS) $(OBJ) $(ELIBS) -o $(CURRDIR)/emain
  165. size $(CURRDIR)/emain
  166. Xlint:
  167. lint $(CDEFS) $(LINTFLAGS) $(SRC)
  168. #AUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTOAUTO
  169. main.o: LLlex.h
  170. main.o: Lpars.h
  171. main.o: align.h
  172. main.o: arith.h
  173. main.o: debug.h
  174. main.o: declar.h
  175. main.o: file_info.h
  176. main.o: idf.h
  177. main.o: input.h
  178. main.o: inputtype.h
  179. main.o: level.h
  180. main.o: noRoption.h
  181. main.o: nobitfield.h
  182. main.o: nocross.h
  183. main.o: nofloat.h
  184. main.o: nopp.h
  185. main.o: sizes.h
  186. main.o: spec_arith.h
  187. main.o: specials.h
  188. main.o: target_sizes.h
  189. main.o: tokenname.h
  190. main.o: type.h
  191. main.o: use_tmp.h
  192. idf.o: LLlex.h
  193. idf.o: Lpars.h
  194. idf.o: align.h
  195. idf.o: arith.h
  196. idf.o: assert.h
  197. idf.o: botch_free.h
  198. idf.o: debug.h
  199. idf.o: declar.h
  200. idf.o: decspecs.h
  201. idf.o: def.h
  202. idf.o: file_info.h
  203. idf.o: idf.h
  204. idf.o: idfsize.h
  205. idf.o: label.h
  206. idf.o: level.h
  207. idf.o: noRoption.h
  208. idf.o: nobitfield.h
  209. idf.o: nocross.h
  210. idf.o: nofloat.h
  211. idf.o: nopp.h
  212. idf.o: sizes.h
  213. idf.o: spec_arith.h
  214. idf.o: specials.h
  215. idf.o: stack.h
  216. idf.o: struct.h
  217. idf.o: target_sizes.h
  218. idf.o: type.h
  219. declarator.o: Lpars.h
  220. declarator.o: arith.h
  221. declarator.o: botch_free.h
  222. declarator.o: declar.h
  223. declarator.o: expr.h
  224. declarator.o: idf.h
  225. declarator.o: label.h
  226. declarator.o: nobitfield.h
  227. declarator.o: nocross.h
  228. declarator.o: nofloat.h
  229. declarator.o: nopp.h
  230. declarator.o: sizes.h
  231. declarator.o: spec_arith.h
  232. declarator.o: target_sizes.h
  233. declarator.o: type.h
  234. decspecs.o: Lpars.h
  235. decspecs.o: arith.h
  236. decspecs.o: decspecs.h
  237. decspecs.o: def.h
  238. decspecs.o: level.h
  239. decspecs.o: noRoption.h
  240. decspecs.o: nobitfield.h
  241. decspecs.o: nofloat.h
  242. decspecs.o: spec_arith.h
  243. decspecs.o: type.h
  244. struct.o: LLlex.h
  245. struct.o: Lpars.h
  246. struct.o: align.h
  247. struct.o: arith.h
  248. struct.o: assert.h
  249. struct.o: botch_free.h
  250. struct.o: debug.h
  251. struct.o: def.h
  252. struct.o: field.h
  253. struct.o: file_info.h
  254. struct.o: idf.h
  255. struct.o: level.h
  256. struct.o: noRoption.h
  257. struct.o: nobitfield.h
  258. struct.o: nocross.h
  259. struct.o: nofloat.h
  260. struct.o: nopp.h
  261. struct.o: sizes.h
  262. struct.o: spec_arith.h
  263. struct.o: stack.h
  264. struct.o: struct.h
  265. struct.o: target_sizes.h
  266. struct.o: type.h
  267. expr.o: LLlex.h
  268. expr.o: Lpars.h
  269. expr.o: arith.h
  270. expr.o: botch_free.h
  271. expr.o: declar.h
  272. expr.o: decspecs.h
  273. expr.o: def.h
  274. expr.o: expr.h
  275. expr.o: file_info.h
  276. expr.o: idf.h
  277. expr.o: label.h
  278. expr.o: level.h
  279. expr.o: noRoption.h
  280. expr.o: nobitfield.h
  281. expr.o: nocross.h
  282. expr.o: nofloat.h
  283. expr.o: nopp.h
  284. expr.o: sizes.h
  285. expr.o: spec_arith.h
  286. expr.o: target_sizes.h
  287. expr.o: type.h
  288. ch7.o: Lpars.h
  289. ch7.o: arith.h
  290. ch7.o: assert.h
  291. ch7.o: debug.h
  292. ch7.o: def.h
  293. ch7.o: expr.h
  294. ch7.o: idf.h
  295. ch7.o: label.h
  296. ch7.o: nobitfield.h
  297. ch7.o: nofloat.h
  298. ch7.o: nopp.h
  299. ch7.o: spec_arith.h
  300. ch7.o: struct.h
  301. ch7.o: type.h
  302. ch7bin.o: Lpars.h
  303. ch7bin.o: arith.h
  304. ch7bin.o: botch_free.h
  305. ch7bin.o: expr.h
  306. ch7bin.o: idf.h
  307. ch7bin.o: label.h
  308. ch7bin.o: noRoption.h
  309. ch7bin.o: nobitfield.h
  310. ch7bin.o: nofloat.h
  311. ch7bin.o: nopp.h
  312. ch7bin.o: spec_arith.h
  313. ch7bin.o: struct.h
  314. ch7bin.o: type.h
  315. cstoper.o: Lpars.h
  316. cstoper.o: arith.h
  317. cstoper.o: assert.h
  318. cstoper.o: debug.h
  319. cstoper.o: expr.h
  320. cstoper.o: idf.h
  321. cstoper.o: label.h
  322. cstoper.o: nobitfield.h
  323. cstoper.o: nocross.h
  324. cstoper.o: nofloat.h
  325. cstoper.o: nopp.h
  326. cstoper.o: sizes.h
  327. cstoper.o: spec_arith.h
  328. cstoper.o: target_sizes.h
  329. cstoper.o: type.h
  330. arith.o: Lpars.h
  331. arith.o: arith.h
  332. arith.o: botch_free.h
  333. arith.o: expr.h
  334. arith.o: field.h
  335. arith.o: idf.h
  336. arith.o: label.h
  337. arith.o: mes.h
  338. arith.o: noRoption.h
  339. arith.o: nobitfield.h
  340. arith.o: nofloat.h
  341. arith.o: nopp.h
  342. arith.o: spec_arith.h
  343. arith.o: type.h
  344. code.o: LLlex.h
  345. code.o: Lpars.h
  346. code.o: align.h
  347. code.o: arith.h
  348. code.o: assert.h
  349. code.o: atw.h
  350. code.o: botch_free.h
  351. code.o: code.h
  352. code.o: dataflow.h
  353. code.o: debug.h
  354. code.o: declar.h
  355. code.o: decspecs.h
  356. code.o: def.h
  357. code.o: expr.h
  358. code.o: file_info.h
  359. code.o: idf.h
  360. code.o: label.h
  361. code.o: level.h
  362. code.o: mes.h
  363. code.o: noRoption.h
  364. code.o: nobitfield.h
  365. code.o: nocross.h
  366. code.o: nofloat.h
  367. code.o: nopp.h
  368. code.o: sizes.h
  369. code.o: spec_arith.h
  370. code.o: specials.h
  371. code.o: stack.h
  372. code.o: stmt.h
  373. code.o: target_sizes.h
  374. code.o: type.h
  375. code.o: use_tmp.h
  376. dumpidf.o: Lpars.h
  377. dumpidf.o: arith.h
  378. dumpidf.o: debug.h
  379. dumpidf.o: def.h
  380. dumpidf.o: expr.h
  381. dumpidf.o: field.h
  382. dumpidf.o: idf.h
  383. dumpidf.o: label.h
  384. dumpidf.o: nobitfield.h
  385. dumpidf.o: nofloat.h
  386. dumpidf.o: nopp.h
  387. dumpidf.o: spec_arith.h
  388. dumpidf.o: stack.h
  389. dumpidf.o: static.h
  390. dumpidf.o: struct.h
  391. dumpidf.o: type.h
  392. error.o: LLlex.h
  393. error.o: arith.h
  394. error.o: debug.h
  395. error.o: errout.h
  396. error.o: expr.h
  397. error.o: file_info.h
  398. error.o: label.h
  399. error.o: nofloat.h
  400. error.o: nopp.h
  401. error.o: spec_arith.h
  402. error.o: tokenname.h
  403. error.o: use_tmp.h
  404. field.o: Lpars.h
  405. field.o: arith.h
  406. field.o: assert.h
  407. field.o: code.h
  408. field.o: debug.h
  409. field.o: expr.h
  410. field.o: field.h
  411. field.o: idf.h
  412. field.o: label.h
  413. field.o: nobitfield.h
  414. field.o: nocross.h
  415. field.o: nofloat.h
  416. field.o: nopp.h
  417. field.o: sizes.h
  418. field.o: spec_arith.h
  419. field.o: target_sizes.h
  420. field.o: type.h
  421. tokenname.o: LLlex.h
  422. tokenname.o: Lpars.h
  423. tokenname.o: arith.h
  424. tokenname.o: file_info.h
  425. tokenname.o: idf.h
  426. tokenname.o: nofloat.h
  427. tokenname.o: nopp.h
  428. tokenname.o: spec_arith.h
  429. tokenname.o: tokenname.h
  430. LLlex.o: LLlex.h
  431. LLlex.o: Lpars.h
  432. LLlex.o: arith.h
  433. LLlex.o: assert.h
  434. LLlex.o: class.h
  435. LLlex.o: debug.h
  436. LLlex.o: def.h
  437. LLlex.o: file_info.h
  438. LLlex.o: idf.h
  439. LLlex.o: idfsize.h
  440. LLlex.o: input.h
  441. LLlex.o: nocross.h
  442. LLlex.o: nofloat.h
  443. LLlex.o: nopp.h
  444. LLlex.o: numsize.h
  445. LLlex.o: sizes.h
  446. LLlex.o: spec_arith.h
  447. LLlex.o: strsize.h
  448. LLlex.o: target_sizes.h
  449. LLmessage.o: LLlex.h
  450. LLmessage.o: Lpars.h
  451. LLmessage.o: arith.h
  452. LLmessage.o: file_info.h
  453. LLmessage.o: idf.h
  454. LLmessage.o: nofloat.h
  455. LLmessage.o: nopp.h
  456. LLmessage.o: spec_arith.h
  457. input.o: file_info.h
  458. input.o: input.h
  459. input.o: inputtype.h
  460. input.o: nopp.h
  461. domacro.o: LLlex.h
  462. domacro.o: Lpars.h
  463. domacro.o: arith.h
  464. domacro.o: assert.h
  465. domacro.o: botch_free.h
  466. domacro.o: class.h
  467. domacro.o: debug.h
  468. domacro.o: file_info.h
  469. domacro.o: idf.h
  470. domacro.o: idfsize.h
  471. domacro.o: ifdepth.h
  472. domacro.o: input.h
  473. domacro.o: interface.h
  474. domacro.o: macro.h
  475. domacro.o: nofloat.h
  476. domacro.o: nopp.h
  477. domacro.o: nparams.h
  478. domacro.o: parbufsize.h
  479. domacro.o: spec_arith.h
  480. domacro.o: textsize.h
  481. replace.o: LLlex.h
  482. replace.o: arith.h
  483. replace.o: assert.h
  484. replace.o: class.h
  485. replace.o: debug.h
  486. replace.o: file_info.h
  487. replace.o: idf.h
  488. replace.o: input.h
  489. replace.o: interface.h
  490. replace.o: macro.h
  491. replace.o: nofloat.h
  492. replace.o: nopp.h
  493. replace.o: pathlength.h
  494. replace.o: spec_arith.h
  495. replace.o: static.h
  496. replace.o: strsize.h
  497. init.o: class.h
  498. init.o: idf.h
  499. init.o: interface.h
  500. init.o: macro.h
  501. init.o: nopp.h
  502. options.o: align.h
  503. options.o: arith.h
  504. options.o: botch_free.h
  505. options.o: class.h
  506. options.o: dataflow.h
  507. options.o: idf.h
  508. options.o: idfsize.h
  509. options.o: macro.h
  510. options.o: noRoption.h
  511. options.o: nobitfield.h
  512. options.o: nocross.h
  513. options.o: nofloat.h
  514. options.o: nopp.h
  515. options.o: sizes.h
  516. options.o: spec_arith.h
  517. options.o: target_sizes.h
  518. options.o: use_tmp.h
  519. scan.o: class.h
  520. scan.o: idf.h
  521. scan.o: input.h
  522. scan.o: interface.h
  523. scan.o: lapbuf.h
  524. scan.o: macro.h
  525. scan.o: nopp.h
  526. scan.o: nparams.h
  527. skip.o: LLlex.h
  528. skip.o: arith.h
  529. skip.o: class.h
  530. skip.o: file_info.h
  531. skip.o: input.h
  532. skip.o: interface.h
  533. skip.o: nofloat.h
  534. skip.o: nopp.h
  535. skip.o: spec_arith.h
  536. stack.o: Lpars.h
  537. stack.o: arith.h
  538. stack.o: botch_free.h
  539. stack.o: debug.h
  540. stack.o: def.h
  541. stack.o: idf.h
  542. stack.o: level.h
  543. stack.o: mes.h
  544. stack.o: noRoption.h
  545. stack.o: nobitfield.h
  546. stack.o: nofloat.h
  547. stack.o: nopp.h
  548. stack.o: spec_arith.h
  549. stack.o: stack.h
  550. stack.o: struct.h
  551. stack.o: type.h
  552. type.o: Lpars.h
  553. type.o: align.h
  554. type.o: arith.h
  555. type.o: botch_free.h
  556. type.o: def.h
  557. type.o: idf.h
  558. type.o: nobitfield.h
  559. type.o: nocross.h
  560. type.o: nofloat.h
  561. type.o: nopp.h
  562. type.o: sizes.h
  563. type.o: spec_arith.h
  564. type.o: target_sizes.h
  565. type.o: type.h
  566. ch7mon.o: Lpars.h
  567. ch7mon.o: arith.h
  568. ch7mon.o: botch_free.h
  569. ch7mon.o: def.h
  570. ch7mon.o: expr.h
  571. ch7mon.o: idf.h
  572. ch7mon.o: label.h
  573. ch7mon.o: nobitfield.h
  574. ch7mon.o: nofloat.h
  575. ch7mon.o: nopp.h
  576. ch7mon.o: spec_arith.h
  577. ch7mon.o: type.h
  578. label.o: Lpars.h
  579. label.o: arith.h
  580. label.o: def.h
  581. label.o: idf.h
  582. label.o: label.h
  583. label.o: level.h
  584. label.o: noRoption.h
  585. label.o: nobitfield.h
  586. label.o: nofloat.h
  587. label.o: nopp.h
  588. label.o: spec_arith.h
  589. label.o: type.h
  590. eval.o: Lpars.h
  591. eval.o: align.h
  592. eval.o: arith.h
  593. eval.o: assert.h
  594. eval.o: atw.h
  595. eval.o: code.h
  596. eval.o: dataflow.h
  597. eval.o: debug.h
  598. eval.o: def.h
  599. eval.o: expr.h
  600. eval.o: idf.h
  601. eval.o: label.h
  602. eval.o: level.h
  603. eval.o: mes.h
  604. eval.o: nobitfield.h
  605. eval.o: nocross.h
  606. eval.o: nofloat.h
  607. eval.o: nopp.h
  608. eval.o: sizes.h
  609. eval.o: spec_arith.h
  610. eval.o: stack.h
  611. eval.o: target_sizes.h
  612. eval.o: type.h
  613. switch.o: Lpars.h
  614. switch.o: arith.h
  615. switch.o: assert.h
  616. switch.o: botch_free.h
  617. switch.o: code.h
  618. switch.o: debug.h
  619. switch.o: density.h
  620. switch.o: expr.h
  621. switch.o: idf.h
  622. switch.o: label.h
  623. switch.o: noRoption.h
  624. switch.o: nobitfield.h
  625. switch.o: nofloat.h
  626. switch.o: nopp.h
  627. switch.o: spec_arith.h
  628. switch.o: switch.h
  629. switch.o: type.h
  630. conversion.o: Lpars.h
  631. conversion.o: arith.h
  632. conversion.o: nobitfield.h
  633. conversion.o: nocross.h
  634. conversion.o: nofloat.h
  635. conversion.o: sizes.h
  636. conversion.o: spec_arith.h
  637. conversion.o: target_sizes.h
  638. conversion.o: type.h
  639. blocks.o: align.h
  640. blocks.o: arith.h
  641. blocks.o: atw.h
  642. blocks.o: label.h
  643. blocks.o: nocross.h
  644. blocks.o: nofloat.h
  645. blocks.o: sizes.h
  646. blocks.o: spec_arith.h
  647. blocks.o: stack.h
  648. blocks.o: target_sizes.h
  649. dataflow.o: dataflow.h
  650. tokenfile.o: Lpars.h
  651. declar.o: LLlex.h
  652. declar.o: Lpars.h
  653. declar.o: arith.h
  654. declar.o: debug.h
  655. declar.o: declar.h
  656. declar.o: decspecs.h
  657. declar.o: def.h
  658. declar.o: expr.h
  659. declar.o: field.h
  660. declar.o: file_info.h
  661. declar.o: idf.h
  662. declar.o: label.h
  663. declar.o: level.h
  664. declar.o: nobitfield.h
  665. declar.o: nocross.h
  666. declar.o: nofloat.h
  667. declar.o: nopp.h
  668. declar.o: sizes.h
  669. declar.o: spec_arith.h
  670. declar.o: struct.h
  671. declar.o: target_sizes.h
  672. declar.o: type.h
  673. statement.o: LLlex.h
  674. statement.o: Lpars.h
  675. statement.o: arith.h
  676. statement.o: botch_free.h
  677. statement.o: code.h
  678. statement.o: debug.h
  679. statement.o: def.h
  680. statement.o: expr.h
  681. statement.o: file_info.h
  682. statement.o: idf.h
  683. statement.o: label.h
  684. statement.o: nobitfield.h
  685. statement.o: nofloat.h
  686. statement.o: nopp.h
  687. statement.o: spec_arith.h
  688. statement.o: stack.h
  689. statement.o: type.h
  690. expression.o: LLlex.h
  691. expression.o: Lpars.h
  692. expression.o: arith.h
  693. expression.o: expr.h
  694. expression.o: file_info.h
  695. expression.o: idf.h
  696. expression.o: label.h
  697. expression.o: noRoption.h
  698. expression.o: nobitfield.h
  699. expression.o: nofloat.h
  700. expression.o: nopp.h
  701. expression.o: spec_arith.h
  702. expression.o: type.h
  703. program.o: LLlex.h
  704. program.o: Lpars.h
  705. program.o: arith.h
  706. program.o: code.h
  707. program.o: declar.h
  708. program.o: decspecs.h
  709. program.o: def.h
  710. program.o: expr.h
  711. program.o: file_info.h
  712. program.o: idf.h
  713. program.o: label.h
  714. program.o: nobitfield.h
  715. program.o: nofloat.h
  716. program.o: nopp.h
  717. program.o: spec_arith.h
  718. program.o: type.h
  719. Lpars.o: Lpars.h
  720. ival.o: LLlex.h
  721. ival.o: Lpars.h
  722. ival.o: align.h
  723. ival.o: arith.h
  724. ival.o: assert.h
  725. ival.o: class.h
  726. ival.o: debug.h
  727. ival.o: def.h
  728. ival.o: estack.h
  729. ival.o: expr.h
  730. ival.o: field.h
  731. ival.o: file_info.h
  732. ival.o: idf.h
  733. ival.o: label.h
  734. ival.o: level.h
  735. ival.o: noRoption.h
  736. ival.o: nobitfield.h
  737. ival.o: nocross.h
  738. ival.o: nofloat.h
  739. ival.o: nopp.h
  740. ival.o: sizes.h
  741. ival.o: spec_arith.h
  742. ival.o: struct.h
  743. ival.o: target_sizes.h
  744. ival.o: type.h
  745. char.o: class.h
  746. symbol2str.o: Lpars.h