Makefile.ultra 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. ###########################################################################
  2. # #
  3. # makefile for REDUCE 3.7 using CSL #
  4. # #
  5. ###########################################################################
  6. # The following lines indicates the place on your disc where the "cslbase"
  7. # directory exists. This is the place where the C sources files for CSL
  8. # live. There are two versions here, the first should use Unix-like
  9. # file name conventions (in particular "/" as a directory separator) while
  10. # the second will (in some cases) be a host-specific translation.
  11. UCSLBASE = ../cslbase
  12. CSLBASE = ../cslbase
  13. ###########################################################################
  14. # Sun Super SPARC, using the Sun C compiler.
  15. # I get conflicting reports about where to find the C compiler...
  16. # please adjust this file by hand if you need to.
  17. CC = /opt/EA/SUNWspro/bin/cc
  18. SPARCOPTS = -xO5 -xdepend -dalign -xtarget=ultra1/170 -DLONG_LONG_64=1 -DMULDIV64=1
  19. SPARCLIBS = -lfast -lm
  20. MPIFLAGS =
  21. CFLAGS = -c $(SPARCOPTS) -DBSD_LIB=1 -I$(CSLBASE) $(MPIFLAGS)
  22. LIBS = $(SPARCLIBS) -lcurses
  23. ###########################################################################
  24. ###########################################################################
  25. SHELL = /bin/sh
  26. LINK = $(CC)
  27. LFLAGS =
  28. OUT = -o
  29. OUTOBJ = -o
  30. ASM = $(CC)
  31. ASMFLAGS = $(CFLAGS)
  32. ASMSRC =
  33. ASMOBJ =
  34. ASMOBJDEP = notused.obj
  35. SYS = sysunix
  36. STORE = -k8000
  37. XSTORE = -k8000
  38. RM = rm
  39. MKDIR = mkdir
  40. COPY = cp
  41. STRIP = strip
  42. WX =
  43. ###########################################################################
  44. ###########################################################################
  45. ###########################################################################
  46. # #
  47. # This is the main bulk of the "makefile" for building Reduce 3.7 and CSL #
  48. # on MSDOS, Windows and Unix. This part of the file expects a number of #
  49. # symbols to have been defined: #
  50. # #
  51. # CSLBASE = file-path for CSLBASE directory #
  52. # CC = The C compiler to use #
  53. # CFLAGS = Flags for C compiler when compiling CSL #
  54. # LINK = Linker to use #
  55. # LFLAGS = Flags for linker #
  56. # LIBS = Libraries to quote to linker #
  57. # OUT = "-o" or "-out:" See link commands #
  58. # OUTOBJ = "-o" often : where to put object code from C compilation #
  59. # ASM = The assembler to use #
  60. # ASMFLAGS = Flags for the assembler #
  61. # ASMSRC = Assembly code source file to use #
  62. # ASMOBJ = Object file for above (or NULL if no assembly used) #
  63. # ASMOBJDEP = Ditto, but may not be NULL #
  64. # SYS = name of system-specific file (sysdos or sysnt etc) #
  65. # STORE = Memory option to pass to CSL (-k2500 is minimum) #
  66. # XSTORE = Memory for the rebuild job that generates C code #
  67. # RM = del for DOS, = rm for Unix #
  68. # MKDIR = mkdir #
  69. # COPY = copy for DOS, = cp for Unix #
  70. # STRIP = echo for DOS, = strip for Unix #
  71. # SYMBOLIC = .SYMBOLIC is using Watcom's "make" utility #
  72. # WX = wx for Windows 3.1, null in all other cases #
  73. # #
  74. # The master version of this file is called "makebase" and is used to #
  75. # create both DOS and Unix makefiles. Use the Codemist "makemake" #
  76. # program to perform the conversion - eg #
  77. # makemake -f makebase -o makemake.386 watcom dos #
  78. # makemake -f makebase -o Makefile.sgi sgi #
  79. # Just "makemake -f makebase" gives list of systems supported #
  80. ###########################################################################
  81. ###########################################################################
  82. ###########################################################################
  83. ###########################################################################
  84. #
  85. # The main final target is r37.img, the image file for full REDUCE.
  86. # If you want to rebuild stage-by-stage (eg while testing), try the
  87. # sequence
  88. # make slowr37 compiles and links C coded kernel
  89. # make slowr37.img makes bootstrap REDUCE
  90. # (roughly twice as slow as final one)
  91. # only used for system recompilation.
  92. # make profile runs tests, collects profile information.
  93. # This takes a long time!
  94. # make prof-inst installs profile data
  95. # make c-code Create files u*.c and u*.lsp
  96. # out of hot-spot parts of REDUCE.
  97. ###########################################################################
  98. # Note that only the steps from here downwards are usually needed
  99. #
  100. # make r37 final compilation of most of REDUCE
  101. # make r37.img build final image file
  102. # make testall runs test files, output to log directory
  103. # make checkall creates log/checkall.log
  104. #
  105. # (for Windows 95/98/NT only)
  106. # make r37c.exe command-line version
  107. #
  108. ###########################################################################
  109. ###########################################################################
  110. #
  111. # C is another name for CSLBASE, the directory that CSL source files live
  112. # in. I introduce it here mainly because $(C) is so much more compact
  113. # then $(CSLBASE).
  114. #
  115. C = $(CSLBASE)
  116. #
  117. # DOBJS is a list of all the object files that are common to all variants
  118. # on the system built here
  119. #
  120. DOBJS = arith01.o arith02.o arith03.o arith04.o \
  121. arith05.o arith06.o arith07.o arith08.o \
  122. arith09.o arith10.o arith11.o arith12.o \
  123. char.o csl.o cslmpi.o eval1.o eval2.o \
  124. eval3.o eval4.o fns1.o fns2.o fns3.o \
  125. print.o read.o restart.o $(ASMOBJ) \
  126. $(SYS).o
  127. CDOBJS = arith01.o,arith02.o,arith03.o,arith04.o,\
  128. arith05.o,arith06.o,arith07.o,arith08.o,\
  129. arith09.o,arith10.o,arith11.o,arith12.o,\
  130. char.o,csl.o,cslmpi.o,eval1.o,eval2.o,\
  131. eval3.o,eval4.o,fns1.o,fns2.o,fns3.o,\
  132. print.o,read.o,restart.o,$(ASMOBJ),\
  133. $(SYS).o
  134. #
  135. # OBJS adds in the files used when I am not building a demonstration-mode CSL
  136. #
  137. OBJS = $(DOBJS) fasl.o gc.o preserve.o
  138. COBJS = $(CDOBJS),fasl.o,gc.o,preserve.o
  139. #
  140. # UOBJS come from that code that is compiled from Lisp into C
  141. #
  142. UOBJS = u01.o u02.o u03.o u04.o u05.o \
  143. u06.o u07.o u08.o u09.o u10.o \
  144. u11.o u12.o
  145. CUOBJS = u01.o,u02.o,u03.o,u04.o,u05.o,\
  146. u06.o,u07.o,u08.o,u09.o,u10.o,\
  147. u11.o,u12.o
  148. ###########################################################################
  149. ###########################################################################
  150. # This default target may be a dangerous one to use
  151. # since it supposes that all the C code is up to date already.
  152. default: $(SYMBOLIC) \
  153. r37 r37.img
  154. ###########################################################################
  155. ###########################################################################
  156. r37.img: r37
  157. ../util/full37
  158. r37: bytes.o $(OBJS) \
  159. $(UOBJS)
  160. $(LINK) $(LFLAGS) bytes.o $(OBJS) $(UOBJS) $(LIBS) $(OUT) r37 $(TAIL)
  161. $(STRIP) r37
  162. -$(MKDIR) log
  163. #
  164. # A few targets here may help me tidy up my filespace from time to time
  165. #
  166. clean: $(SYMBOLIC)
  167. -$(RM) slowr37
  168. -$(RM) slowr37.img
  169. -$(RM) r37
  170. -$(RM) r37.img
  171. -$(RM) csl
  172. -$(RM) csl.img
  173. -$(RM) *.o
  174. -$(MKDIR) log
  175. -$(RM) log/*.log
  176. ###########################################################################
  177. csl: bytes.o $(OBJS) \
  178. stubs.o
  179. $(LINK) $(LFLAGS) bytes.o $(OBJS) stubs.o $(LIBS) $(OUT) csl $(TAIL)
  180. $(STRIP) csl
  181. slowr37: bytes1.o $(OBJS) \
  182. stubs.o
  183. $(LINK) $(LFLAGS) bytes1.o $(OBJS) stubs.o $(LIBS) $(OUT) slowr37 $(TAIL)
  184. $(STRIP) slowr37
  185. -$(MKDIR) log
  186. slowr37.img: slowr37
  187. ../util/boot37
  188. profile: slowr37.img $(SYMBOLIC)
  189. ../util/profile
  190. prof-inst: profile.dat $(SYMBOLIC)
  191. $(COPY) profile.dat ../csl-c
  192. -$(RM) profile.dat
  193. c-code: slowr37.img $(SYMBOLIC)
  194. ../util/c-code37
  195. testslow: slowr37.img $(SYMBOLIC)
  196. ../util/testslow
  197. testall: r37.img $(SYMBOLIC)
  198. ../util/testrest
  199. checkall: r37.img $(SYMBOLIC)
  200. ../util/checkall
  201. patchup: r37.img $(SYMBOLIC)
  202. ../util/patchup
  203. cleanlog: $(SYMBOLIC)
  204. -$(RM) ../../../log/*.rlg
  205. csl.img: csl $(C)/compat.lsp $(C)/compiler.lsp \
  206. $(C)/ccomp.lsp $(C)/extras.lsp
  207. -$(RM) csl.img
  208. $(WX) ./csl $(STORE) -v -z $(C)/build0.lsp \
  209. -D@cslbase="$(C)" -- log/cslimg.log
  210. #
  211. # "make lispfile"
  212. # recreates compiler.lsp, extras.lsp and ccomp.lsp from
  213. # the corresponding master sources which are held in RLISP
  214. # form. Temporarily builds an RLISP parser on the way.
  215. # NB: only for system maintainance use.
  216. lispfile: csl csl.img $(C)/lispfile.lsp $(SYMBOLIC)
  217. $(WX) ./csl $(STORE) -v -z $(C)/lispfile.lsp \
  218. -D@cslbase="$(C)" -- log/lispfile.log
  219. signature: $(C)/version.hhh register.key $(SYMBOLIC)
  220. filesign -u $(C)/version.hhh $(C)/version.h Developer or tester
  221. ############################################################################
  222. # Now rules for re-compiling the main collection of CSL source files. I
  223. # write each case out individually since that makes the makefile less
  224. # delicate than one that relies on setting up general rules - and I want this
  225. # file to work on several different systems.
  226. #
  227. $(ASMOBJDEP): $(C)/$(ASMSRC)
  228. $(ASM) $(ASMFLAGS) $(C)/$(ASMSRC)
  229. arith01.o: $(C)/arith01.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  230. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  231. $(CC) $(CFLAGS) \
  232. $(C)/arith01.c
  233. arith02.o: $(C)/arith02.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  234. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  235. $(CC) $(CFLAGS) \
  236. $(C)/arith02.c
  237. arith03.o: $(C)/arith03.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  238. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  239. $(CC) $(CFLAGS) \
  240. $(C)/arith03.c
  241. arith04.o: $(C)/arith04.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  242. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  243. $(CC) $(CFLAGS) \
  244. $(C)/arith04.c
  245. arith05.o: $(C)/arith05.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  246. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h $(C)/stream.h
  247. $(CC) $(CFLAGS) \
  248. $(C)/arith05.c
  249. arith06.o: $(C)/arith06.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  250. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  251. $(CC) $(CFLAGS) \
  252. $(C)/arith06.c
  253. arith07.o: $(C)/arith07.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  254. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  255. $(CC) $(CFLAGS) \
  256. $(C)/arith07.c
  257. arith08.o: $(C)/arith08.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  258. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  259. $(CC) $(CFLAGS) \
  260. $(C)/arith08.c
  261. arith09.o: $(C)/arith09.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  262. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  263. $(CC) $(CFLAGS) \
  264. $(C)/arith09.c
  265. arith10.o: $(C)/arith10.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  266. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  267. $(CC) $(CFLAGS) \
  268. $(C)/arith10.c
  269. arith11.o: $(C)/arith11.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  270. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h
  271. $(CC) $(CFLAGS) \
  272. $(C)/arith11.c
  273. arith12.o: $(C)/arith12.c $(C)/arith.h $(C)/tags.h $(C)/machine.h \
  274. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  275. $(CC) $(CFLAGS) \
  276. $(C)/arith12.c
  277. bytes.o: $(C)/bytes1.c $(C)/bytes.c $(C)/tags.h $(C)/machine.h \
  278. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h \
  279. $(C)/bytes.h $(C)/arith.h
  280. $(CC) $(CFLAGS) \
  281. $(C)/bytes.c
  282. bytes1.o: $(C)/bytes1.c $(C)/bytes.c $(C)/tags.h $(C)/machine.h \
  283. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h \
  284. $(C)/bytes.h $(C)/arith.h
  285. $(CC) $(CFLAGS) \
  286. $(C)/bytes1.c
  287. #
  288. # The target "bytes1a.o" recompiles bytes1.c, but with the flag set that
  289. # arranges that the number of GET operations performed and the associated
  290. # indicators will be recorded, so that (bytecounts) will display statistics
  291. # about it. This slows things down considerably, but can help when you are in
  292. # the process of deciding which indicators are specified as "fast" ones.
  293. #
  294. bytes1a.o: $(C)/bytes1.c $(C)/bytes.c $(C)/tags.h $(C)/machine.h \
  295. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h \
  296. $(C)/bytes.h $(C)/arith.h
  297. $(CC) $(CFLAGS) -DRECORD_GET=1 \
  298. $(C)/bytes1.c
  299. char.o: $(C)/char.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  300. $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  301. $(CC) $(CFLAGS) \
  302. $(C)/char.c
  303. csl.o: $(C)/csl.c $(C)/tags.h $(C)/machine.h $(C)/externs.h $(C)/version.h \
  304. $(C)/sys.h $(C)/cslerror.h $(C)/entries.h $(C)/stream.h $(C)/sockhdr.h
  305. $(CC) $(CFLAGS) \
  306. $(C)/csl.c
  307. eval1.o: $(C)/eval1.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  308. $(C)/sys.h $(C)/cslerror.h $(C)/arith.h $(C)/entries.h
  309. $(CC) $(CFLAGS) \
  310. $(C)/eval1.c
  311. eval2.o: $(C)/eval2.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  312. $(C)/sys.h $(C)/cslerror.h $(C)/arith.h $(C)/entries.h
  313. $(CC) $(CFLAGS) \
  314. $(C)/eval2.c
  315. eval3.o: $(C)/eval3.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  316. $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  317. $(CC) $(CFLAGS) \
  318. $(C)/eval3.c
  319. eval4.o: $(C)/eval4.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  320. $(C)/sys.h $(C)/cslerror.h $(C)/arith.h
  321. $(CC) $(CFLAGS) \
  322. $(C)/eval4.c
  323. fasl.o: $(C)/fasl.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  324. $(C)/sys.h $(C)/cslerror.h $(C)/arith.h
  325. $(CC) $(CFLAGS) \
  326. $(C)/fasl.c
  327. fns1.o: $(C)/fns1.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  328. $(C)/sys.h $(C)/cslerror.h $(C)/entries.h
  329. $(CC) $(CFLAGS) \
  330. $(C)/fns1.c
  331. fns2.o: $(C)/fns2.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  332. $(C)/sys.h $(C)/cslerror.h $(C)/read.h $(C)/entries.h \
  333. $(C)/sockhdr.h
  334. $(CC) $(CFLAGS) \
  335. $(C)/fns2.c
  336. fns3.o: $(C)/fns3.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  337. $(C)/sys.h $(C)/cslerror.h $(C)/read.h $(C)/entries.h
  338. $(CC) $(CFLAGS) \
  339. $(C)/fns3.c
  340. gc.o: $(C)/gc.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  341. $(C)/sys.h $(C)/cslerror.h
  342. $(CC) $(CFLAGS) \
  343. $(C)/gc.c
  344. #
  345. # For each major target I have one file that is system specific - eg
  346. # sysdos.c, sysunix.c, ...
  347. #
  348. $(SYS).o: $(C)/$(SYS).c $(C)/machine.h $(C)/externs.h \
  349. $(C)/sys.h $(C)/fileops.c $(C)/scandir.c $(C)/version.h \
  350. $(C)/filename.c
  351. $(CC) $(CFLAGS) \
  352. $(C)/$(SYS).c
  353. preserve.o: $(C)/preserve.c $(C)/tags.h $(C)/machine.h $(C)/stream.h \
  354. $(C)/externs.h $(C)/sys.h $(C)/cslerror.h $(C)/read.h $(C)/version.h
  355. $(CC) $(CFLAGS) \
  356. $(C)/preserve.c
  357. print.o: $(C)/print.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  358. $(C)/sys.h $(C)/cslerror.h $(C)/read.h \
  359. $(C)/arith.h $(C)/entries.h $(C)/stream.h $(C)/sockhdr.h
  360. $(CC) $(CFLAGS) \
  361. $(C)/print.c
  362. read.o: $(C)/read.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  363. $(C)/sys.h $(C)/cslerror.h $(C)/read.h \
  364. $(C)/arith.h $(C)/entries.h $(C)/stream.h $(C)/sockhdr.h
  365. $(CC) $(CFLAGS) \
  366. $(C)/read.c
  367. restart.o: $(C)/restart.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  368. $(C)/sys.h $(C)/cslerror.h $(C)/read.h $(C)/version.h \
  369. $(C)/arith.h $(C)/entries.h $(C)/stream.h
  370. $(CC) $(CFLAGS) \
  371. $(C)/restart.c
  372. stubs.o: $(C)/stubs.c $(C)/machine.h $(C)/externs.h $(C)/sys.h \
  373. $(C)/tags.h $(C)/cslerror.h
  374. $(CC) $(CFLAGS) \
  375. $(C)/stubs.c
  376. cslmpi.o: $(C)/cslmpi.c $(C)/machine.h $(C)/externs.h $(C)/sys.h \
  377. $(C)/mpipack.c $(C)/tags.h $(C)/cslerror.h
  378. $(CC) $(CFLAGS) \
  379. $(C)/cslmpi.c
  380. ###########################################################################
  381. u01.o: ../csl-c/u01.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  382. $(C)/cslerror.h $(C)/entries.h
  383. $(CC) $(CFLAGS) \
  384. ../csl-c/u01.c
  385. u02.o: ../csl-c/u02.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  386. $(C)/cslerror.h $(C)/entries.h
  387. $(CC) $(CFLAGS) \
  388. ../csl-c/u02.c
  389. u03.o: ../csl-c/u03.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  390. $(C)/cslerror.h $(C)/entries.h
  391. $(CC) $(CFLAGS) \
  392. ../csl-c/u03.c
  393. u04.o: ../csl-c/u04.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  394. $(C)/cslerror.h $(C)/entries.h
  395. $(CC) $(CFLAGS) \
  396. ../csl-c/u04.c
  397. u05.o: ../csl-c/u05.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  398. $(C)/cslerror.h $(C)/entries.h
  399. $(CC) $(CFLAGS) \
  400. ../csl-c/u05.c
  401. u06.o: ../csl-c/u06.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  402. $(C)/cslerror.h $(C)/entries.h
  403. $(CC) $(CFLAGS) \
  404. ../csl-c/u06.c
  405. u07.o: ../csl-c/u07.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  406. $(C)/cslerror.h $(C)/entries.h
  407. $(CC) $(CFLAGS) \
  408. ../csl-c/u07.c
  409. u08.o: ../csl-c/u08.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  410. $(C)/cslerror.h $(C)/entries.h
  411. $(CC) $(CFLAGS) \
  412. ../csl-c/u08.c
  413. u09.o: ../csl-c/u09.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  414. $(C)/cslerror.h $(C)/entries.h
  415. $(CC) $(CFLAGS) \
  416. ../csl-c/u09.c
  417. u10.o: ../csl-c/u10.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  418. $(C)/cslerror.h $(C)/entries.h
  419. $(CC) $(CFLAGS) \
  420. ../csl-c/u10.c
  421. u11.o: ../csl-c/u11.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  422. $(C)/cslerror.h $(C)/entries.h
  423. $(CC) $(CFLAGS) \
  424. ../csl-c/u11.c
  425. u12.o: ../csl-c/u12.c $(C)/tags.h $(C)/machine.h $(C)/externs.h \
  426. $(C)/cslerror.h $(C)/entries.h
  427. $(CC) $(CFLAGS) \
  428. ../csl-c/u12.c
  429. # end of makefile