Makefile.solaris 19 KB

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