Makefile.alpha 18 KB

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