Makefile.erik 15 KB

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