Makew32.dbg 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886
  1. ###########################################################################
  2. # #
  3. # makefile for REDUCE 3.6 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. # This is for 32-bit operation with Watcom C version 10.5, 10.6, 11.0 #
  15. # Note that other release of Watcom C need command line options changed #
  16. ###########################################################################
  17. CC = *wcc386
  18. OPTFLAGS = -d2 -d_DEBUG -DDEBUG=1
  19. MPIFLAGS =
  20. CCFLAGS = -d_MBCS=1 -d_WINDOWS=1 -dWINDOWS_NT=1 -bt=nt -DCWIN=1
  21. CFLAGS = $(OPTFLAGS) $(CCFLAGS) -i=$(CSLBASE) $(MPIFLAGS) -5r-zp4-ei-w3-bm-fhq
  22. CPP = *wpp386
  23. !ifeq __VERSION__ 11
  24. CPPFLAGS = $(CFLAGS) -xs
  25. !else
  26. CPPFLAGS = $(CFLAGS) -xs-zo
  27. !endif
  28. ASM = *wasm
  29. ASMFLAGS = -mf -5r -w4 -zq
  30. LINK = *wlink
  31. LDEBUG = debug all
  32. LSYS = nt_win
  33. LIBS = REFERENCE _wstart2_
  34. LFLAGS = system $(LSYS) option map,eliminate,stack=256K $(LDEBUG) file
  35. ASMSRC = imulwat.asm
  36. ASMOBJ = imulwat.obj
  37. ASMOBJDEP = imulwat.obj
  38. STORE = -k8000
  39. XSTORE = -k8000
  40. # The .SYMBOLIC directive tells Watcom "wmake" not to fuss when a
  41. # target in the makefile does not correspond to a file that will get
  42. # create by activating it.
  43. SYMBOLIC = .SYMBOLIC
  44. OUT = name
  45. OUTOBJ = -fo=
  46. SYS = syscwin
  47. WX =
  48. RM = del
  49. MKDIR = mkdir
  50. COPY = copy
  51. STRIP = -echo
  52. ###########################################################################
  53. ###########################################################################
  54. ###########################################################################
  55. # #
  56. # This is the main bulk of the "makefile" for building Reduce 3.6 and CSL #
  57. # on MSDOS, Windows and Unix. This part of the file expects a number of #
  58. # symbols to have been defined: #
  59. # #
  60. # CSLBASE = file-path for CSLBASE directory #
  61. # CC = The C compiler to use #
  62. # CFLAGS = Flags for C compiler when compiling CSL #
  63. # LINK = Linker to use #
  64. # LFLAGS = Flags for linker #
  65. # LIBS = Libraries to quote to linker #
  66. # OUT = "-o" or "-out:" See link commands #
  67. # OUTOBJ = "-o" often : where to put object code from C compilation #
  68. # ASM = The assembler to use #
  69. # ASMFLAGS = Flags for the assembler #
  70. # ASMSRC = Assembly code source file to use #
  71. # ASMOBJ = Object file for above (or NULL if no assembly used) #
  72. # ASMOBJDEP = Ditto, but may not be NULL #
  73. # SYS = name of system-specific file (sysdos or sysnt etc) #
  74. # STORE = Memory option to pass to CSL (-k2500 is minimum) #
  75. # XSTORE = Memory for the rebuild job that generates C code #
  76. # RM = del for DOS, = rm for Unix #
  77. # MKDIR = mkdir #
  78. # COPY = copy for DOS, = cp for Unix #
  79. # STRIP = echo for DOS, = strip for Unix #
  80. # SYMBOLIC = .SYMBOLIC is using Watcom's "make" utility #
  81. # WX = wx for Windows 3.1, null in all other cases #
  82. # #
  83. # The master version of this file is called "makebase" and is used to #
  84. # create both DOS and Unix makefiles. Use the Codemist "makemake" #
  85. # program to perform the conversion - eg #
  86. # makemake -f makebase -o makemake.386 watcom dos #
  87. # makemake -f makebase -o Makefile.sgi sgi #
  88. # Just "makemake -f makebase" gives list of systems supported #
  89. ###########################################################################
  90. ###########################################################################
  91. ###########################################################################
  92. ###########################################################################
  93. #
  94. # The main final target is r36.img, the image file for full REDUCE.
  95. # If you want to rebuild stage-by-stage (eg while testing), try the
  96. # sequence
  97. # make csl.exe compiles and links C coded kernel
  98. # make csl.img builds compiler image on top of above
  99. # make slowr36.img makes bootstrap REDUCE
  100. # (roughly twice as slow as final one)
  101. # only used for system recompilation.
  102. # make ccode runs test file to collect statistics
  103. # and create files u*.c and u*.lsp
  104. # out of hot-spot parts of REDUCE. Note that
  105. # >>>>>>>>>>>>>>>>>>> this is not done automatically by the main
  106. # >>>> N. B. >>>> set of "make" dependences, since the
  107. # >>>>>>>>>>>>>>>>>>> files u*.* provided are probably OK - but
  108. # you need to do it again if the main REDUCE
  109. # sources are altered
  110. # make fasl36.img final compilation of most of REDUCE
  111. # make r36.exe build final executable binary
  112. # make r36.img build final image file
  113. # make testall runs test files, output to log directory
  114. #
  115. ###########################################################################
  116. ###########################################################################
  117. #
  118. # C is another name for CSLBASE, the directory that CSL source files live
  119. # in. I introduce it here mainly because $(C) is so much more compact
  120. # then $(CSLBASE).
  121. #
  122. C = $(CSLBASE)
  123. #
  124. # DOBJS is a list of all the object files that are common to all variants
  125. # on the system built here
  126. #
  127. DOBJS = arith01.obj arith02.obj arith03.obj arith04.obj &
  128. arith05.obj arith06.obj arith07.obj arith08.obj &
  129. arith09.obj arith10.obj arith11.obj arith12.obj &
  130. char.obj csl.obj cslmpi.obj eval1.obj eval2.obj &
  131. eval3.obj eval4.obj fns1.obj fns2.obj fns3.obj &
  132. print.obj read.obj restart.obj $(ASMOBJ) &
  133. $(SYS).obj c_applic.obj c_text.obj &
  134. c_graph.obj c_render.obj c_viewpt.obj
  135. CDOBJS = arith01.obj,arith02.obj,arith03.obj,arith04.obj,&
  136. arith05.obj,arith06.obj,arith07.obj,arith08.obj,&
  137. arith09.obj,arith10.obj,arith11.obj,arith12.obj,&
  138. char.obj,csl.obj,cslmpi.obj,eval1.obj,eval2.obj,&
  139. eval3.obj,eval4.obj,fns1.obj,fns2.obj,fns3.obj,&
  140. print.obj,read.obj,restart.obj,$(ASMOBJ),&
  141. $(SYS).obj,c_applic.obj,c_text.obj,&
  142. c_graph.obj,c_render.obj,c_viewpt.obj
  143. #
  144. # OBJS adds in the files used when I am not building a demonstration-mode CSL
  145. #
  146. OBJS = $(DOBJS) fasl.obj gc.obj preserve.obj
  147. COBJS = $(CDOBJS),fasl.obj,gc.obj,preserve.obj
  148. #
  149. # UOBJS come from that code that is compiled from Lisp into C
  150. #
  151. UOBJS = u01.obj u02.obj u03.obj u04.obj u05.obj &
  152. u06.obj u07.obj u08.obj u09.obj u10.obj &
  153. u11.obj u12.obj
  154. CUOBJS = u01.obj,u02.obj,u03.obj,u04.obj,u05.obj,&
  155. u06.obj,u07.obj,u08.obj,u09.obj,u10.obj,&
  156. u11.obj,u12.obj
  157. ###########################################################################
  158. ###########################################################################
  159. #
  160. # "r36.img" is an image file for the main parts of Reduce
  161. r36.img: fasl36.img r36.exe
  162. $(WX) r36 $(STORE) -v -z -i fasl36.img -o- ..\cslsrc\r36.lsp -- r36.log
  163. -$(MKDIR) log
  164. # "make patches" can be used after the "src/patches.red" file has changed
  165. patches: ..\src\patches.red $(SYMBOLIC)
  166. $(WX) r36 $(STORE) -v ..\cslsrc\mkpatch.red -- mkpatch.log
  167. $(WX) r36 $(STORE) -v -i- -o fasl36.img ..\cslsrc\mkpatch1.red -- mkpatch1.log
  168. $(WX) r36 $(STORE) -v -z -i fasl36.img -o- ..\cslsrc\r36.lsp -- r36.log
  169. #
  170. # "make testall" tests the final production version of Reduce
  171. #
  172. testall: log\algint.log log\applysym.log log\arnum.log log\assist.log log\avector.log &
  173. log\boolean.log log\cali.log log\camal.log log\changevr.log &
  174. log\compact.log log\complex.log log\crack.log log\cvit.log &
  175. log\decompos.log log\defint.log log\desir.log log\dfpart.log &
  176. log\dummy.log log\elem.log log\excalc.log log\factor.log &
  177. log\fide.log log\fps.log log\gcd.log log\gentran.log &
  178. log\groebner.log log\ideals.log log\ineq.log log\int.log &
  179. log\invbase.log log\laplace.log log\lie.log log\limits.log &
  180. log\linalg.log log\math.log log\matrix.log log\modsr.log &
  181. log\ncpoly.log log\normform.log log\numeric.log log\odesolve.log &
  182. log\orthovec.log log\pf.log log\physop.log log\pmrules.log &
  183. log\randpoly.log log\reacteqn.log log\reduce.log log\residue.log log\rlfi.log &
  184. log\rlisp88.log log\roots.log log\rounded.log log\rsolve.log &
  185. log\scope.log log\sets.log log\solve.log log\spde.log &
  186. log\specfn.log log\sum.log log\symmetry.log log\taylor.log &
  187. log\tps.log log\tri.log log\trigsimp.log log\wu.log log\xcolor.log log\xideal.log &
  188. log\zeilberg.log log\ztrans.log $(SYMBOLIC)
  189. -echo all tests done
  190. ###########################################################################
  191. ###########################################################################
  192. #
  193. # The targets from here on down are used in the process of doing a full
  194. # system re-build
  195. # fasl36.img is a file needed during a re-build of Reduce. It contains
  196. # compiled versions of all the Reduce modules.
  197. fasl36.img: csl.exe slowr36.img
  198. -$(RM) fasl36.img
  199. $(WX) csl $(STORE) -v -i slowr36.img -o fasl36.img &
  200. ..\cslsrc\fasl36.red -- fasl36.log
  201. # "make personal" downgrades a full version of Reduce to make a"personal"
  202. # version (without the compiler).
  203. personal: r36.exe r36.img $(SYMBOLIC)
  204. $(COPY) r36.exe ..\r36.exe
  205. $(COPY) r36.img ..\r36.img
  206. $(WX) ..\r36 ..\cslsrc\remcmp.lsp
  207. # "make rl" manufactures an image file that contains just an Rlisp parser
  208. rl: $(SYMBOLIC) rlisp.exe rlisp.img
  209. rlisp.exe: $(SYMBOLIC) csl.exe
  210. $(COPY) csl.exe rlisp.exe
  211. rlisp.img: rlisp.exe
  212. $(WX) rlisp $(STORE) -v -z -o rlisp.img &
  213. ..\cslsrc\mkrlisp.lsp -D@cslbase="$(C)" -- rlisp.log
  214. #
  215. # r36.exe can only be built when all the user-generated C code has been
  216. # built.
  217. #
  218. r36.exe: bytes.obj $(OBJS) &
  219. $(UOBJS)
  220. $(LINK) $(LFLAGS) bytes.obj,$(COBJS),$(CUOBJS) $(LIBS) $(OUT) r36.exe $(TAIL)
  221. wrc -i..\cslsrc -i$(C) -bt=nt ..\cslsrc\r36.rc r36.exe
  222. $(STRIP) r36.exe
  223. #
  224. # slowr36 is a version of Reduce used just to compile the final version.
  225. # It is larger and slower than the final release version, and will not have
  226. # all the optional modules built into it.
  227. #
  228. slowr36.img: csl.exe ..\cslsrc\slowr36.lsp ..\src\boot.sl &
  229. ..\src\cslprolo.red ..\src\module.red &
  230. ..\src\rlisp.red ..\src\cslrend.red ..\src\poly.red &
  231. ..\src\alg.red ..\src\arith.red ..\src\mathpr.red &
  232. ..\src\entry.red
  233. $(WX) csl $(STORE) -o slowr36.img -v -z &
  234. ..\cslsrc\slowr36.lsp -D@cslbase="$(C)" -- slowr36.log
  235. #
  236. # A few targets here may help me tidy up my filespace from time to time
  237. #
  238. cleansmall: $(SYMBOLIC)
  239. -$(RM) slowr36.img
  240. clean: $(SYMBOLIC)
  241. -$(RM) slowr36.img
  242. -$(RM) r36.exe
  243. -$(RM) fasl36.img
  244. -$(RM) r36.img
  245. #
  246. # demored is a demonstration version of Reduce with built-in resource
  247. # limitations.
  248. #
  249. demored: csl.exe slowr36.img bytes.obj $(DOBJS) $(SYMBOLIC) &
  250. stubs.obj
  251. $(CC) $(CFLAGS) $(C)\demo.c
  252. $(LINK) $(LFLAGS) bytes.obj,$(CDOBJS),stubs.obj,demo.obj $(LIBS) $(OUT) demored.exe $(TAIL)
  253. wrc -i..\cslsrc -i$(C) -bt=nt ..\cslsrc\demored.rc demored.exe
  254. $(STRIP) demored.exe
  255. -$(RM) demored.img
  256. $(WX) csl $(STORE) -i slowr36.img -v -z -i fasl36.img &
  257. -o demored.img ..\cslsrc\makedemo.lsp -- makedemo.log
  258. ###########################################################################
  259. csl.img: csl.exe $(C)\compat.lsp $(C)\compiler.lsp &
  260. $(C)\ccomp.lsp $(C)\extras.lsp
  261. -$(RM) csl.img
  262. $(WX) csl $(STORE) -v -z $(C)\build0.lsp &
  263. -D@cslbase="$(C)" -- cslimg.log
  264. csl.exe: bytes.obj $(OBJS) &
  265. stubs.obj
  266. $(LINK) $(LFLAGS) bytes.obj,$(COBJS),stubs.obj $(LIBS) $(OUT) csl.exe $(TAIL)
  267. wrc -i$(C) -i$(C) -bt=nt $(C)\csl.rc csl.exe
  268. $(STRIP) csl.exe
  269. slowcsl.exe: bytes1.obj $(OBJS) &
  270. stubs.obj
  271. $(LINK) $(LFLAGS) bytes1.obj,$(COBJS),stubs.obj $(LIBS) $(OUT) slowcsl.exe $(TAIL)
  272. wrc -i$(C) -i$(C) -bt=nt $(C)\csl.rc slowcsl.exe
  273. $(STRIP) slowcsl.exe
  274. r36front.exe: r36front.obj &
  275. c_applic1.obj c_text.obj c_graph.obj c_render.obj c_viewpt.obj
  276. $(LINK) $(LFLAGS) r36front.obj,c_applic1.obj,c_text.obj,c_graph.obj,c_render.obj,c_viewpt.obj $(LIBS) $(OUT) r36front.exe $(TAIL)
  277. wrc -i$(C) -i$(C) -bt=nt $(C)\r36front.rc r36front.exe
  278. $(STRIP) r36front.exe
  279. #
  280. # "make lispfile"
  281. # recreates compiler.lsp, extras.lsp and ccomp.lsp from
  282. # the corresponding master sources which are held in RLISP
  283. # form. Temporarily builds an RLISP parser on the way.
  284. lispfile: csl.exe csl.img $(C)\lispfile.lsp $(SYMBOLIC)
  285. $(WX) csl $(STORE) -v -z $(C)\lispfile.lsp &
  286. -D@cslbase="$(C)" -- lispfile.log
  287. signature: $(C)\version.hhh register.key $(SYMBOLIC)
  288. filesign -u $(C)\version.hhh $(C)\version.h Developer or tester
  289. #
  290. # Now rules for re-compiling the main collection of CSL source files. I
  291. # write each case out individually since that makes the makefile less
  292. # delicate than one that relies on setting up general rules - and I want this
  293. # file to work on several different systems.
  294. #
  295. # There is a special nasty with the Watcom assembler (at least version
  296. # 10.5) in that tab characters on the command line upset it, so I MUST
  297. # have the command given here all on one line in that case.
  298. $(ASMOBJDEP): $(C)\$(ASMSRC)
  299. $(ASM) $(ASMFLAGS) $(C)\$(ASMSRC)
  300. arith01.obj: $(C)\arith01.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  301. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  302. $(CC) $(CFLAGS) &
  303. $(C)\arith01.c
  304. arith02.obj: $(C)\arith02.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  305. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  306. $(CC) $(CFLAGS) &
  307. $(C)\arith02.c
  308. arith03.obj: $(C)\arith03.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  309. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  310. $(CC) $(CFLAGS) &
  311. $(C)\arith03.c
  312. arith04.obj: $(C)\arith04.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  313. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  314. $(CC) $(CFLAGS) &
  315. $(C)\arith04.c
  316. arith05.obj: $(C)\arith05.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  317. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h $(C)\stream.h
  318. $(CC) $(CFLAGS) &
  319. $(C)\arith05.c
  320. arith06.obj: $(C)\arith06.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  321. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  322. $(CC) $(CFLAGS) &
  323. $(C)\arith06.c
  324. arith07.obj: $(C)\arith07.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  325. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  326. $(CC) $(CFLAGS) &
  327. $(C)\arith07.c
  328. arith08.obj: $(C)\arith08.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  329. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  330. $(CC) $(CFLAGS) &
  331. $(C)\arith08.c
  332. arith09.obj: $(C)\arith09.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  333. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  334. $(CC) $(CFLAGS) &
  335. $(C)\arith09.c
  336. arith10.obj: $(C)\arith10.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  337. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  338. $(CC) $(CFLAGS) &
  339. $(C)\arith10.c
  340. arith11.obj: $(C)\arith11.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  341. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h
  342. $(CC) $(CFLAGS) &
  343. $(C)\arith11.c
  344. arith12.obj: $(C)\arith12.c $(C)\arith.h $(C)\tags.h $(C)\machine.h &
  345. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  346. $(CC) $(CFLAGS) &
  347. $(C)\arith12.c
  348. bytes.obj: $(C)\bytes1.c $(C)\bytes.c $(C)\tags.h $(C)\machine.h &
  349. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h &
  350. $(C)\bytes.h $(C)\arith.h
  351. $(CC) $(CFLAGS) &
  352. $(C)\bytes.c
  353. bytes1.obj: $(C)\bytes1.c $(C)\bytes.c $(C)\tags.h $(C)\machine.h &
  354. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h &
  355. $(C)\bytes.h $(C)\arith.h
  356. $(CC) $(CFLAGS) &
  357. $(C)\bytes1.c
  358. #
  359. # The target "bytes1a.o" recompiles bytes1.c, but with the flag set that
  360. # arranges that the number of GET operations performed and the associated
  361. # indicators will be recorded, so that (bytecounts) will display statistics
  362. # about it. This slows things down considerably, but can help when you are in
  363. # the process of deciding which indicators are specified as "fast" ones.
  364. #
  365. bytes1a.obj: $(C)\bytes1.c $(C)\bytes.c $(C)\tags.h $(C)\machine.h &
  366. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h &
  367. $(C)\bytes.h $(C)\arith.h
  368. $(CC) $(CFLAGS) -DRECORD_GET=1 &
  369. $(C)\bytes1.c
  370. char.obj: $(C)\char.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  371. $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  372. $(CC) $(CFLAGS) &
  373. $(C)\char.c
  374. csl.obj: $(C)\csl.c $(C)\tags.h $(C)\machine.h $(C)\externs.h $(C)\version.h &
  375. $(C)\sys.h $(C)\cslerror.h $(C)\entries.h $(C)\stream.h $(C)\sockhdr.h
  376. $(CC) $(CFLAGS) &
  377. $(C)\csl.c
  378. r36front.obj: $(C)\r36front.c $(C)\tags.h $(C)\machine.h $(C)\externs.h $(C)\version.h &
  379. $(C)\sys.h $(C)\cslerror.h $(C)\entries.h $(C)\stream.h $(C)\sockhdr.h
  380. $(CC) $(CFLAGS) &
  381. $(C)\r36front.c
  382. # the cwin window manager package is for use with Watcom C only (at present)
  383. c_applic.obj: $(C)\c_applic.cpp $(C)\cwin.h $(C)\cwin.hpp $(C)\cwinres.h
  384. $(CPP) $(CPPFLAGS) &
  385. $(C)\c_applic.cpp
  386. c_applic1.obj: $(C)\c_applic.cpp $(C)\cwin.h $(C)\cwin.hpp $(C)\cwinres.h
  387. $(CPP) $(CPPFLAGS) -DDEMOVERSION=1 &
  388. $(OUTOBJ) c_applic1.obj
  389. $(C)\c_applic.cpp
  390. c_text.obj: $(C)\c_text.cpp $(C)\cwin.h $(C)\cwin.hpp $(C)\cwinres.h
  391. $(CPP) $(CPPFLAGS) &
  392. $(C)\c_text.cpp
  393. c_graph.obj: $(C)\c_graph.cpp $(C)\cwin.h $(C)\cwin.hpp $(C)\cwinres.h
  394. $(CPP) $(CPPFLAGS) &
  395. $(C)\c_graph.cpp
  396. c_render.obj: $(C)\c_render.cpp $(C)\cwin.h $(C)\cwin.hpp $(C)\cwinres.h
  397. $(CPP) $(CPPFLAGS) &
  398. $(C)\c_render.cpp
  399. c_viewpt.obj: $(C)\c_viewpt.cpp $(C)\cwin.h $(C)\cwin.hpp $(C)\cwinres.h
  400. $(CPP) $(CPPFLAGS) &
  401. $(C)\c_viewpt.cpp
  402. eval1.obj: $(C)\eval1.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  403. $(C)\sys.h $(C)\cslerror.h $(C)\arith.h $(C)\entries.h
  404. $(CC) $(CFLAGS) &
  405. $(C)\eval1.c
  406. eval2.obj: $(C)\eval2.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  407. $(C)\sys.h $(C)\cslerror.h $(C)\arith.h $(C)\entries.h
  408. $(CC) $(CFLAGS) &
  409. $(C)\eval2.c
  410. eval3.obj: $(C)\eval3.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  411. $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  412. $(CC) $(CFLAGS) &
  413. $(C)\eval3.c
  414. eval4.obj: $(C)\eval4.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  415. $(C)\sys.h $(C)\cslerror.h $(C)\arith.h
  416. $(CC) $(CFLAGS) &
  417. $(C)\eval4.c
  418. fasl.obj: $(C)\fasl.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  419. $(C)\sys.h $(C)\cslerror.h $(C)\arith.h
  420. $(CC) $(CFLAGS) &
  421. $(C)\fasl.c
  422. fns1.obj: $(C)\fns1.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  423. $(C)\sys.h $(C)\cslerror.h $(C)\entries.h
  424. $(CC) $(CFLAGS) &
  425. $(C)\fns1.c
  426. fns2.obj: $(C)\fns2.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  427. $(C)\sys.h $(C)\cslerror.h $(C)\read.h $(C)\entries.h &
  428. $(C)\sockhdr.h
  429. $(CC) $(CFLAGS) &
  430. $(C)\fns2.c
  431. fns3.obj: $(C)\fns3.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  432. $(C)\sys.h $(C)\cslerror.h $(C)\read.h $(C)\entries.h
  433. $(CC) $(CFLAGS) &
  434. $(C)\fns3.c
  435. gc.obj: $(C)\gc.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  436. $(C)\sys.h $(C)\cslerror.h
  437. $(CC) $(CFLAGS) &
  438. $(C)\gc.c
  439. #
  440. # For each major target I have one file that is system specific - eg
  441. # sysdos.c, sysunix.c, ...
  442. #
  443. $(SYS).obj: $(C)\$(SYS).c $(C)\machine.h $(C)\externs.h &
  444. $(C)\sys.h $(C)\fileops.c $(C)\scandir.c $(C)\version.h &
  445. $(C)\filename.c
  446. $(CC) $(CFLAGS) &
  447. $(C)\$(SYS).c
  448. preserve.obj: $(C)\preserve.c $(C)\tags.h $(C)\machine.h $(C)\stream.h &
  449. $(C)\externs.h $(C)\sys.h $(C)\cslerror.h $(C)\read.h $(C)\version.h
  450. $(CC) $(CFLAGS) &
  451. $(C)\preserve.c
  452. print.obj: $(C)\print.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  453. $(C)\sys.h $(C)\cslerror.h $(C)\read.h &
  454. $(C)\arith.h $(C)\entries.h $(C)\stream.h $(C)\sockhdr.h
  455. $(CC) $(CFLAGS) &
  456. $(C)\print.c
  457. read.obj: $(C)\read.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  458. $(C)\sys.h $(C)\cslerror.h $(C)\read.h &
  459. $(C)\arith.h $(C)\entries.h $(C)\stream.h $(C)\sockhdr.h
  460. $(CC) $(CFLAGS) &
  461. $(C)\read.c
  462. restart.obj: $(C)\restart.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  463. $(C)\sys.h $(C)\cslerror.h $(C)\read.h $(C)\version.h &
  464. $(C)\arith.h $(C)\entries.h $(C)\stream.h
  465. $(CC) $(CFLAGS) &
  466. $(C)\restart.c
  467. stubs.obj: $(C)\stubs.c $(C)\machine.h $(C)\externs.h $(C)\sys.h &
  468. $(C)\tags.h $(C)\cslerror.h
  469. $(CC) $(CFLAGS) &
  470. $(C)\stubs.c
  471. cslmpi.obj: $(C)\cslmpi.c $(C)\machine.h $(C)\externs.h $(C)\sys.h &
  472. $(C)\mpipack.c $(C)\tags.h $(C)\cslerror.h
  473. $(CC) $(CFLAGS) &
  474. $(C)\cslmpi.c
  475. ###########################################################################
  476. u01.obj: u01.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  477. $(C)\cslerror.h $(C)\entries.h
  478. $(CC) $(CFLAGS) &
  479. u01.c
  480. u02.obj: u02.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  481. $(C)\cslerror.h $(C)\entries.h
  482. $(CC) $(CFLAGS) &
  483. u02.c
  484. u03.obj: u03.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  485. $(C)\cslerror.h $(C)\entries.h
  486. $(CC) $(CFLAGS) &
  487. u03.c
  488. u04.obj: u04.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  489. $(C)\cslerror.h $(C)\entries.h
  490. $(CC) $(CFLAGS) &
  491. u04.c
  492. u05.obj: u05.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  493. $(C)\cslerror.h $(C)\entries.h
  494. $(CC) $(CFLAGS) &
  495. u05.c
  496. u06.obj: u06.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  497. $(C)\cslerror.h $(C)\entries.h
  498. $(CC) $(CFLAGS) &
  499. u06.c
  500. u07.obj: u07.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  501. $(C)\cslerror.h $(C)\entries.h
  502. $(CC) $(CFLAGS) &
  503. u07.c
  504. u08.obj: u08.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  505. $(C)\cslerror.h $(C)\entries.h
  506. $(CC) $(CFLAGS) &
  507. u08.c
  508. u09.obj: u09.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  509. $(C)\cslerror.h $(C)\entries.h
  510. $(CC) $(CFLAGS) &
  511. u09.c
  512. u10.obj: u10.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  513. $(C)\cslerror.h $(C)\entries.h
  514. $(CC) $(CFLAGS) &
  515. u10.c
  516. u11.obj: u11.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  517. $(C)\cslerror.h $(C)\entries.h
  518. $(CC) $(CFLAGS) &
  519. u11.c
  520. u12.obj: u12.c $(C)\tags.h $(C)\machine.h $(C)\externs.h &
  521. $(C)\cslerror.h $(C)\entries.h
  522. $(CC) $(CFLAGS) &
  523. u12.c
  524. #
  525. # "make ccode" re-manufactures u01.c to u12.c and u01.lsp to u12.lsp
  526. # I do not put in dependencies that cause this to happen automatically
  527. # since experience shows that if I did it would happen (at significant
  528. # expense) much too often. However when things alter in the Reduce
  529. # source directory or when major changes are made to CSL this should be
  530. # activated.
  531. #
  532. #
  533. # N.B. the step here used $(XSTORE) rather than $(STORE) because this
  534. # build step may take more memory than any other.
  535. #
  536. ccode: slowcsl.exe slowr36.img $(SYMBOLIC)
  537. $(WX) slowcsl $(XSTORE) -i slowr36.img -v ..\cslsrc\select36.red -- select36.log
  538. #
  539. # Code to recreate the log files from the production version of the system.
  540. #
  541. # Note that for Windows benefit I use my own private output redirection with
  542. # "--" rather than ">", since ">" seems incompatible with fully window
  543. # applications, even when launched from the command line. Then to make this
  544. # file consistent across platforms I use the same scheme all the time.
  545. #
  546. log\algint.log: r36.exe r36.img ..\xmpl\algint.tst
  547. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=algint -Dloadup=algint -- log\algint.log
  548. log\applysym.log: r36.exe r36.img ..\xmpl\applysym.tst
  549. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=applysym -Dloadup=applysym -- log\applysym.log
  550. log\arnum.log: r36.exe r36.img ..\xmpl\arnum.tst
  551. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=arnum -Dloadup=arnum -- log\arnum.log
  552. log\assist.log: r36.exe r36.img ..\xmpl\assist.tst
  553. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=assist -Dloadup=assist -- log\assist.log
  554. log\avector.log: r36.exe r36.img ..\xmpl\avector.tst
  555. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=avector -Dloadup=avector -- log\avector.log
  556. log\boolean.log: r36.exe r36.img ..\xmpl\boolean.tst
  557. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=boolean -Dloadup=boolean -- log\boolean.log
  558. log\cali.log: r36.exe r36.img ..\xmpl\cali.tst
  559. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=cali -Dloadup=cali -- log\cali.log
  560. log\camal.log: r36.exe r36.img ..\xmpl\camal.tst
  561. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=camal -Dloadup=camal -- log\camal.log
  562. log\changevr.log: r36.exe r36.img ..\xmpl\changevr.tst
  563. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=changevr -Dloadup=changevr -- log\changevr.log
  564. log\compact.log: r36.exe r36.img ..\xmpl\compact.tst
  565. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=compact -Dloadup=compact -- log\compact.log
  566. log\complex.log: r36.exe r36.img ..\xmpl\complex.tst
  567. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=complex -- log\complex.log
  568. log\crack.log: r36.exe r36.img ..\xmpl\crack.tst
  569. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=crack -Dloadup=crack -- log\crack.log
  570. log\cvit.log: r36.exe r36.img ..\xmpl\cvit.tst
  571. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=cvit -Dloadup=cvit -- log\cvit.log
  572. log\decompos.log: r36.exe r36.img ..\xmpl\decompos.tst
  573. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=decompos -- log\decompos.log
  574. log\defint.log: r36.exe r36.img ..\xmpl\defint.tst
  575. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=defint -Dloadup=defint -- log\defint.log
  576. log\desir.log: r36.exe r36.img ..\xmpl\desir.tst
  577. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=desir -Dloadup=desir -- log\desir.log
  578. log\dfpart.log: r36.exe r36.img ..\xmpl\dfpart.tst
  579. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=dfpart -Dloadup=dfpart -- log\dfpart.log
  580. log\dummy.log: r36.exe r36.img ..\xmpl\dummy.tst
  581. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=dummy -Dloadup=dummy -- log\dummy.log
  582. log\elem.log: r36.exe r36.img ..\xmpl\elem.tst
  583. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=elem -- log\elem.log
  584. log\excalc.log: r36.exe r36.img ..\xmpl\excalc.tst
  585. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=excalc -Dloadup=excalc -- log\excalc.log
  586. log\factor.log: r36.exe r36.img ..\xmpl\factor.tst
  587. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=factor -- log\factor.log
  588. log\fide.log: r36.exe r36.img ..\xmpl\fide.tst
  589. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=fide -Dloadup=fide -- log\fide.log
  590. log\fps.log: r36.exe r36.img ..\xmpl\fps.tst
  591. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=fps -Dloadup=fps -- log\fps.log
  592. log\gcd.log: r36.exe r36.img ..\xmpl\gcd.tst
  593. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=gcd -- log\gcd.log
  594. log\gentran.log: r36.exe r36.img ..\xmpl\gentran.tst
  595. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=gentran -Dloadup=gentran -- log\gentran.log
  596. log\groebner.log: r36.exe r36.img ..\xmpl\groebner.tst
  597. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=groebner -Dloadup=groebner -- log\groebner.log
  598. log\ideals.log: r36.exe r36.img ..\xmpl\ideals.tst
  599. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=ideals -Dloadup=ideals -- log\ideals.log
  600. log\ineq.log: r36.exe r36.img ..\xmpl\ineq.tst
  601. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=ineq -Dloadup=ineq -- log\ineq.log
  602. log\int.log: r36.exe r36.img ..\xmpl\int.tst
  603. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=int -- log\int.log
  604. log\invbase.log: r36.exe r36.img ..\xmpl\invbase.tst
  605. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=invbase -Dloadup=invbase -- log\invbase.log
  606. log\laplace.log: r36.exe r36.img ..\xmpl\laplace.tst
  607. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=laplace -Dloadup=laplace -- log\laplace.log
  608. log\lie.log: r36.exe r36.img ..\xmpl\lie.tst
  609. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=lie -Dloadup=lie -- log\lie.log
  610. log\limits.log: r36.exe r36.img ..\xmpl\limits.tst
  611. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=limits -- log\limits.log
  612. log\linalg.log: r36.exe r36.img ..\xmpl\linalg.tst
  613. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=linalg -Dloadup=linalg -- log\linalg.log
  614. log\math.log: r36.exe r36.img ..\xmpl\math.tst
  615. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=math -- log\math.log
  616. log\matrix.log: r36.exe r36.img ..\xmpl\matrix.tst
  617. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=matrix -- log\matrix.log
  618. log\modsr.log: r36.exe r36.img ..\xmpl\modsr.tst
  619. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=modsr -Dloadup=modsr -- log\modsr.log
  620. log\ncpoly.log: r36.exe r36.img ..\xmpl\ncpoly.tst
  621. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=ncpoly -Dloadup=ncpoly -- log\ncpoly.log
  622. log\normform.log: r36.exe r36.img ..\xmpl\normform.tst
  623. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=normform -Dloadup=normform -- log\normform.log
  624. log\numeric.log: r36.exe r36.img ..\xmpl\numeric.tst
  625. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=numeric -Dloadup=numeric -- log\numeric.log
  626. log\odesolve.log: r36.exe r36.img ..\xmpl\odesolve.tst
  627. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=odesolve -Dloadup=odesolve -- log\odesolve.log
  628. log\orthovec.log: r36.exe r36.img ..\xmpl\orthovec.tst
  629. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=orthovec -Dloadup=orthovec -- log\orthovec.log
  630. log\pf.log: r36.exe r36.img ..\xmpl\pf.tst
  631. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=pf -- log\pf.log
  632. log\physop.log: r36.exe r36.img ..\xmpl\physop.tst
  633. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=physop -Dloadup=physop -- log\physop.log
  634. log\pmrules.log: r36.exe r36.img ..\xmpl\pmrules.tst
  635. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=pmrules -Dloadup=pmrules -- log\pmrules.log
  636. log\randpoly.log: r36.exe r36.img ..\xmpl\randpoly.tst
  637. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=randpoly -Dloadup=randpoly -- log\randpoly.log
  638. log\reacteqn.log: r36.exe r36.img ..\xmpl\reacteqn.tst
  639. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=reacteqn -Dloadup=reacteqn -- log\reacteqn.log
  640. log\reduce.log: r36.exe r36.img ..\xmpl\reduce.tst
  641. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=reduce -- log\reduce.log
  642. log\residue.log: r36.exe r36.img ..\xmpl\residue.tst
  643. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=residue -Dloadup=residue -- log\residue.log
  644. log\rlfi.log: r36.exe r36.img ..\xmpl\rlfi.tst
  645. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=rlfi -Dloadup=rlfi -- log\rlfi.log
  646. log\rlisp88.log: r36.exe r36.img ..\xmpl\rlisp88.tst
  647. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=rlisp88 -- log\rlisp88.log
  648. log\roots.log: r36.exe r36.img ..\xmpl\roots.tst
  649. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=roots -- log\roots.log
  650. log\rounded.log: r36.exe r36.img ..\xmpl\rounded.tst
  651. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=rounded -- log\rounded.log
  652. log\rsolve.log: r36.exe r36.img ..\xmpl\rsolve.tst
  653. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=rsolve -Dloadup=rsolve -- log\rsolve.log
  654. log\scope.log: r36.exe r36.img ..\xmpl\scope.tst
  655. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=scope -Dloadup=scope -- log\scope.log
  656. log\sets.log: r36.exe r36.img ..\xmpl\sets.tst
  657. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=sets -Dloadup=sets -- log\sets.log
  658. log\solve.log: r36.exe r36.img ..\xmpl\solve.tst
  659. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=solve -- log\solve.log
  660. log\spde.log: r36.exe r36.img ..\xmpl\spde.tst
  661. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=spde -Dloadup=spde -- log\spde.log
  662. log\specfn.log: r36.exe r36.img ..\xmpl\specfn.tst
  663. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=specfn -Dloadup=specfn -- log\specfn.log
  664. log\sum.log: r36.exe r36.img ..\xmpl\sum.tst
  665. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=sum -- log\sum.log
  666. log\symmetry.log: r36.exe r36.img ..\xmpl\symmetry.tst
  667. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=symmetry -Dloadup=symmetry -- log\symmetry.log
  668. log\taylor.log: r36.exe r36.img ..\xmpl\taylor.tst
  669. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=taylor -Dloadup=taylor -- log\taylor.log
  670. log\tps.log: r36.exe r36.img ..\xmpl\tps.tst
  671. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=tps -Dloadup=tps -- log\tps.log
  672. log\tri.log: r36.exe r36.img ..\xmpl\tri.tst
  673. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=tri -Dloadup=tri -- log\tri.log
  674. log\trigsimp.log: r36.exe r36.img ..\xmpl\trigsimp.tst
  675. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=trigsimp -Dloadup=trigsimp -- log\trigsimp.log
  676. log\wu.log: r36.exe r36.img ..\xmpl\wu.tst
  677. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=wu -Dloadup=wu -- log\wu.log
  678. log\xcolor.log: r36.exe r36.img ..\xmpl\xcolor.tst
  679. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=xcolor -Dloadup=xcolor -- log\xcolor.log
  680. log\xideal.log: r36.exe r36.img ..\xmpl\xideal.tst
  681. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=xideal -Dloadup=xideal -- log\xideal.log
  682. log\zeilberg.log: r36.exe r36.img ..\xmpl\zeilberg.tst
  683. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=zeilberg -Dloadup=zeilberg -- log\zeilberg.log
  684. log\ztrans.log: r36.exe r36.img ..\xmpl\ztrans.tst
  685. $(WX) r36 $(STORE) -b ..\cslsrc\ndotest.red -Dname=ztrans -Dloadup=ztrans -- log\ztrans.log
  686. # end of makefile