descrip.mms 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. #*****************************************************************************
  2. # *
  3. # Make file for VMS *
  4. # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
  5. # Date : 28 September 2011 *
  6. # *
  7. #*****************************************************************************
  8. .first
  9. define wx [-.include.wx]
  10. .ifdef __WXMOTIF__
  11. TEST_CXXFLAGS = /define=(__WXMOTIF__=1,"wxUSE_GUI=0")/name=(as_is,short)\
  12. /assume=(nostdnew,noglobal_array_new)
  13. TEST_GUI_CXXFLAGS = /define=(__WXMOTIF__=1,"wxUSE_GUI=1")/name=(as_is,short)\
  14. /assume=(nostdnew,noglobal_array_new)
  15. .else
  16. .ifdef __WXGTK__
  17. TEST_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=0","__USE_STD_IOSTREAM=1",\
  18. "_USE_STD_STAT=1")/float=ieee/name=(as_is,short)/ieee=denorm\
  19. /assume=(nostdnew,noglobal_array_new)/include=[]
  20. TEST_GUI_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=1","__USE_STD_IOSTREAM=1")\
  21. /float=ieee/name=(as_is,short)/ieee=denorm\
  22. /assume=(nostdnew,noglobal_array_new)/include=[]
  23. .else
  24. .ifdef __WXX11__
  25. TEST_CXXFLAGS = /define=(__WXX11__=1,__WXUNIVERSAL__==1,"wxUSE_GUI=0")/float=ieee\
  26. /name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
  27. TEST_GUI_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=1")/float=ieee/name=(as_is,short)/ieee=denorm\
  28. /assume=(nostdnew,noglobal_array_new)
  29. .else
  30. .ifdef __WXGTK2__
  31. TEST_CXXFLAGS = /define=(__WXGTK__=1,VMS_GTK2==1,"wxUSE_GUI=0")/float=ieee\
  32. /name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
  33. TEST_GUI_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=1")/float=ieee/name=(as_is,short)/ieee=denorm\
  34. /assume=(nostdnew,noglobal_array_new)
  35. .else
  36. CXX_DEFINE =
  37. CC_DEFINE =
  38. .endif
  39. .endif
  40. .endif
  41. .endif
  42. .suffixes : .cpp
  43. .cpp.obj :
  44. cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
  45. CXXC=cxx
  46. TEST_OBJECTS = \
  47. test_anytest.obj,\
  48. test_archivetest.obj,\
  49. test_arrays.obj,\
  50. test_base64.obj,\
  51. test_cmdlinetest.obj,\
  52. test_fileconf.obj,\
  53. test_regconf.obj,\
  54. test_datetimetest.obj,\
  55. test_evthandler.obj,\
  56. test_evtsource.obj,\
  57. test_stopwatch.obj,\
  58. test_timertest.obj,\
  59. test_exec.obj,\
  60. test_dir.obj,\
  61. test_filefn.obj,\
  62. test_filetest.obj,\
  63. test_filekind.obj,\
  64. test_filenametest.obj,\
  65. test_filesystest.obj,\
  66. test_fontmaptest.obj,\
  67. test_formatconvertertest.obj,\
  68. test_hashes.obj,\
  69. test_output.obj,\
  70. test_input.obj,\
  71. test_intltest.obj,\
  72. test_lists.obj,\
  73. test_logtest.obj,\
  74. test_longlongtest.obj,\
  75. test_convautotest.obj,\
  76. test_mbconvtest.obj,\
  77. test_dynamiclib.obj,\
  78. test_environ.obj,\
  79. test_metatest.obj,\
  80. test_misctests.obj,\
  81. test_module.obj,\
  82. test_pathlist.obj,\
  83. test_typeinfotest.obj
  84. TEST_OBJECTS1=test_ipc.obj,\
  85. test_socket.obj,\
  86. test_regextest.obj,\
  87. test_wxregextest.obj,\
  88. test_scopeguardtest.obj,\
  89. test_iostream.obj,\
  90. test_strings.obj,\
  91. test_stdstrings.obj,\
  92. test_tokenizer.obj,\
  93. test_unichar.obj,\
  94. test_unicode.obj,\
  95. test_crt.obj,\
  96. test_vsnprintf.obj,\
  97. test_bstream.obj,\
  98. test_datastreamtest.obj,\
  99. test_ffilestream.obj,\
  100. test_fileback.obj,\
  101. test_filestream.obj,\
  102. test_iostreams.obj,\
  103. test_largefile.obj,\
  104. test_memstream.obj,\
  105. test_socketstream.obj,\
  106. test_sstream.obj,\
  107. test_stdstream.obj,\
  108. test_tempfile.obj,\
  109. test_textstreamtest.obj,\
  110. test_zlibstream.obj,\
  111. test_textfiletest.obj,\
  112. test_atomic.obj,\
  113. test_misc.obj,\
  114. test_queue.obj,\
  115. test_tls.obj,\
  116. test_ftp.obj,\
  117. test_uris.obj,\
  118. test_url.obj,\
  119. test_vectors.obj,\
  120. test_evtconnection.obj,\
  121. test_weakref.obj,\
  122. test_xlocale.obj,\
  123. test_xmltest.obj
  124. TEST_L_OBJs=test_ziptest.obj,\
  125. test_tartest.obj
  126. TEST_GUI_OBJECTS = \
  127. test_gui_asserthelper.obj,\
  128. test_gui_testableframe.obj,\
  129. test_gui_rect.obj,\
  130. test_gui_size.obj,\
  131. test_gui_point.obj,\
  132. test_gui_bitmap.obj,\
  133. test_gui_colour.obj,\
  134. test_gui_ellipsization.obj,\
  135. test_gui_measuring.obj,\
  136. test_gui_config.obj,\
  137. test_gui_bitmapcomboboxtest.obj,\
  138. test_gui_bitmaptogglebuttontest.obj,\
  139. test_gui_bookctrlbasetest.obj,\
  140. test_gui_buttontest.obj
  141. TEST_GUI_OBJECTS1=test_gui_checkboxtest.obj,\
  142. test_gui_checklistboxtest.obj,\
  143. test_gui_choicebooktest.obj,\
  144. test_gui_choicetest.obj,\
  145. test_gui_comboboxtest.obj,\
  146. test_gui_frametest.obj,\
  147. test_gui_gaugetest.obj,\
  148. test_gui_gridtest.obj,\
  149. test_gui_headerctrltest.obj,\
  150. test_gui_htmllboxtest.obj,\
  151. test_gui_hyperlinkctrltest.obj,\
  152. test_gui_itemcontainertest.obj,\
  153. test_gui_label.obj,\
  154. test_gui_listbasetest.obj,\
  155. test_gui_listbooktest.obj,\
  156. test_gui_listboxtest.obj,\
  157. test_gui_listctrltest.obj,\
  158. test_gui_listviewtest.obj,\
  159. test_gui_notebooktest.obj,\
  160. test_gui_pickerbasetest.obj,\
  161. test_gui_pickertest.obj,\
  162. test_gui_radioboxtest.obj,\
  163. test_gui_radiobuttontest.obj,\
  164. test_gui_rearrangelisttest.obj
  165. TEST_GUI_OBJECTS2=test_gui_richtextctrltest.obj,\
  166. test_gui_slidertest.obj,\
  167. test_gui_spinctrldbltest.obj,\
  168. test_gui_spinctrltest.obj,\
  169. test_gui_textctrltest.obj,\
  170. test_gui_textentrytest.obj,\
  171. test_gui_togglebuttontest.obj,\
  172. test_gui_toolbooktest.obj,\
  173. test_gui_treebooktest.obj,\
  174. test_gui_treectrltest.obj,\
  175. test_gui_virtlistctrltest.obj,\
  176. test_gui_windowtest.obj,\
  177. test_gui_clone.obj,\
  178. test_gui_propagation.obj,\
  179. test_gui_keyboard.obj,\
  180. test_gui_fonttest.obj,\
  181. test_gui_image.obj,\
  182. test_gui_rawbmp.obj,\
  183. test_gui_htmlwindow.obj,\
  184. test_gui_accelentry.obj,\
  185. test_gui_menu.obj,\
  186. test_gui_guifuncs.obj,\
  187. test_gui_selstoretest.obj,\
  188. test_gui_garbage.obj,\
  189. test_gui_settings.obj,\
  190. test_gui_socket.obj,\
  191. test_gui_boxsizer.obj,\
  192. test_gui_clientsize.obj,\
  193. test_gui_setsize.obj,\
  194. test_gui_xrctest.obj
  195. .ifdef __WXMOTIF__
  196. .else
  197. .ifdef __WXGTK__
  198. all : test_gtk.exe test_gui_gtk.exe
  199. write sys$output "tests created"
  200. test_gtk.exe : test_test.obj $(TEST_OBJECTS) $(TEST_OBJECTS1) $(TEST_L_OBJS)
  201. library/create temp.olb $(TEST_OBJECTS)
  202. library temp.olb $(TEST_OBJECTS1)
  203. cxxlink/exec=test_gtk.exe test_test.obj,$(TEST_L_OBJS),temp.olb/lib,\
  204. sys$library:libcppunit.olb/lib,[-.lib]vms_gtk/opt
  205. delete temp.olb;*
  206. test_gui_gtk.exe : test_gui_test.obj $(TEST_GUI_OBJECTS) $(TEST_GUI_OBJECTS1)\
  207. $(TEST_GUI_OBJECTS2)
  208. library/create temp.olb $(TEST_GUI_OBJECTS)
  209. library temp.olb $(TEST_GUI_OBJECTS1)
  210. library temp.olb $(TEST_GUI_OBJECTS2)
  211. cxxlink/exec=test_gui_gtk.exe test_gui_test.obj,temp.olb/lib,\
  212. sys$library:libcppunit.olb/lib,[-.lib]vms_gtk/opt
  213. .else
  214. .ifdef __WXX11__
  215. .else
  216. .ifdef __WXGTK2__
  217. .else
  218. .endif
  219. .endif
  220. .endif
  221. .endif
  222. $(TEST_OBJECTS) : [-.include.wx]setup.h
  223. $(TEST_GUI_OBJECTS) : [-.include.wx]setup.h
  224. test_test.obj : test.cpp
  225. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) test.cpp
  226. test_anytest.obj : [.any]anytest.cpp
  227. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.any]anytest.cpp
  228. test_archivetest.obj : [.archive]archivetest.cpp
  229. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.archive]archivetest.cpp
  230. test_ziptest.obj : [.archive]ziptest.cpp
  231. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.archive]ziptest.cpp
  232. test_tartest.obj : [.archive]tartest.cpp
  233. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.archive]tartest.cpp
  234. test_arrays.obj : [.arrays]arrays.cpp
  235. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.arrays]arrays.cpp
  236. test_base64.obj : [.base64]base64.cpp
  237. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.base64]base64.cpp
  238. test_cmdlinetest.obj : [.cmdline]cmdlinetest.cpp
  239. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.cmdline]cmdlinetest.cpp
  240. test_fileconf.obj : [.config]fileconf.cpp
  241. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.config]fileconf.cpp
  242. test_regconf.obj : [.config]regconf.cpp
  243. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.config]regconf.cpp
  244. test_datetimetest.obj : [.datetime]datetimetest.cpp
  245. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=INTSIGNCHANGE)\
  246. [.datetime]datetimetest.cpp
  247. test_evthandler.obj : [.events]evthandler.cpp
  248. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evthandler.cpp
  249. test_evtsource.obj : [.events]evtsource.cpp
  250. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evtsource.cpp
  251. test_stopwatch.obj : [.events]stopwatch.cpp
  252. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]stopwatch.cpp
  253. test_timertest.obj : [.events]timertest.cpp
  254. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]timertest.cpp
  255. test_exec.obj : [.exec]exec.cpp
  256. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.exec]exec.cpp
  257. test_dir.obj : [.file]dir.cpp
  258. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.file]dir.cpp
  259. test_filefn.obj : [.file]filefn.cpp
  260. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.file]filefn.cpp
  261. test_filetest.obj : [.file]filetest.cpp
  262. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.file]filetest.cpp
  263. test_filekind.obj : [.filekind]filekind.cpp
  264. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.filekind]filekind.cpp
  265. test_filenametest.obj : [.filename]filenametest.cpp
  266. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.filename]filenametest.cpp
  267. test_filesystest.obj : [.filesys]filesystest.cpp
  268. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.filesys]filesystest.cpp
  269. test_fontmaptest.obj : [.fontmap]fontmaptest.cpp
  270. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.fontmap]fontmaptest.cpp
  271. test_formatconvertertest.obj : [.formatconverter]formatconvertertest.cpp
  272. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.formatconverter]formatconvertertest.cpp
  273. test_hashes.obj : [.hashes]hashes.cpp
  274. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.hashes]hashes.cpp
  275. test_output.obj : [.interactive]output.cpp
  276. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.interactive]output.cpp
  277. test_input.obj : [.interactive]input.cpp
  278. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.interactive]input.cpp
  279. test_intltest.obj : [.intl]intltest.cpp
  280. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.intl]intltest.cpp
  281. test_lists.obj : [.lists]lists.cpp
  282. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.lists]lists.cpp
  283. test_logtest.obj : [.log]logtest.cpp
  284. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.log]logtest.cpp
  285. test_longlongtest.obj : [.longlong]longlongtest.cpp
  286. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.longlong]longlongtest.cpp
  287. test_convautotest.obj : [.mbconv]convautotest.cpp
  288. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.mbconv]convautotest.cpp
  289. test_mbconvtest.obj : [.mbconv]mbconvtest.cpp
  290. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.mbconv]mbconvtest.cpp
  291. test_dynamiclib.obj : [.misc]dynamiclib.cpp
  292. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]dynamiclib.cpp
  293. test_environ.obj : [.misc]environ.cpp
  294. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]environ.cpp
  295. test_metatest.obj : [.misc]metatest.cpp
  296. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]metatest.cpp
  297. test_misctests.obj : [.misc]misctests.cpp
  298. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]misctests.cpp
  299. test_module.obj : [.misc]module.cpp
  300. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]module.cpp
  301. test_pathlist.obj : [.misc]pathlist.cpp
  302. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]pathlist.cpp
  303. test_typeinfotest.obj : [.misc]typeinfotest.cpp
  304. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]typeinfotest.cpp
  305. test_ipc.obj : [.net]ipc.cpp
  306. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.net]ipc.cpp
  307. test_socket.obj : [.net]socket.cpp
  308. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=REFTEMPORARY)\
  309. [.net]socket.cpp
  310. test_regextest.obj : [.regex]regextest.cpp
  311. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.regex]regextest.cpp
  312. test_wxregextest.obj : [.regex]wxregextest.cpp
  313. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.regex]wxregextest.cpp
  314. test_scopeguardtest.obj : [.scopeguard]scopeguardtest.cpp
  315. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.scopeguard]scopeguardtest.cpp
  316. test_iostream.obj : [.strings]iostream.cpp
  317. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]iostream.cpp
  318. test_strings.obj : [.strings]strings.cpp
  319. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=INTSIGNCHANGE)\
  320. [.strings]strings.cpp
  321. test_stdstrings.obj : [.strings]stdstrings.cpp
  322. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]stdstrings.cpp
  323. test_tokenizer.obj : [.strings]tokenizer.cpp
  324. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]tokenizer.cpp
  325. test_unichar.obj : [.strings]unichar.cpp
  326. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]unichar.cpp
  327. test_unicode.obj : [.strings]unicode.cpp
  328. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]unicode.cpp
  329. test_crt.obj : [.strings]crt.cpp
  330. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]crt.cpp
  331. test_vsnprintf.obj : [.strings]vsnprintf.cpp
  332. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]vsnprintf.cpp
  333. test_bstream.obj : [.streams]bstream.cpp
  334. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]bstream.cpp
  335. test_datastreamtest.obj : [.streams]datastreamtest.cpp
  336. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]datastreamtest.cpp
  337. test_ffilestream.obj : [.streams]ffilestream.cpp
  338. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]ffilestream.cpp
  339. test_fileback.obj : [.streams]fileback.cpp
  340. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]fileback.cpp
  341. test_filestream.obj : [.streams]filestream.cpp
  342. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]filestream.cpp
  343. test_iostreams.obj : [.streams]iostreams.cpp
  344. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]iostreams.cpp
  345. test_largefile.obj : [.streams]largefile.cpp
  346. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=INTSIGNCHANGE)\
  347. [.streams]largefile.cpp
  348. test_memstream.obj : [.streams]memstream.cpp
  349. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]memstream.cpp
  350. test_socketstream.obj : [.streams]socketstream.cpp
  351. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]socketstream.cpp
  352. test_sstream.obj : [.streams]sstream.cpp
  353. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]sstream.cpp
  354. test_stdstream.obj : [.streams]stdstream.cpp
  355. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]stdstream.cpp
  356. test_tempfile.obj : [.streams]tempfile.cpp
  357. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]tempfile.cpp
  358. test_textstreamtest.obj : [.streams]textstreamtest.cpp
  359. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]textstreamtest.cpp
  360. test_zlibstream.obj : [.streams]zlibstream.cpp
  361. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]zlibstream.cpp
  362. test_textfiletest.obj : [.textfile]textfiletest.cpp
  363. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.textfile]textfiletest.cpp
  364. test_atomic.obj : [.thread]atomic.cpp
  365. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]atomic.cpp
  366. test_misc.obj : [.thread]misc.cpp
  367. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]misc.cpp
  368. test_queue.obj : [.thread]queue.cpp
  369. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]queue.cpp
  370. test_tls.obj : [.thread]tls.cpp
  371. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]tls.cpp
  372. test_ftp.obj : [.uris]ftp.cpp
  373. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.uris]ftp.cpp
  374. test_uris.obj : [.uris]uris.cpp
  375. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.uris]uris.cpp
  376. test_url.obj : [.uris]url.cpp
  377. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.uris]url.cpp
  378. test_vectors.obj : [.vectors]vectors.cpp
  379. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.vectors]vectors.cpp
  380. test_evtconnection.obj : [.weakref]evtconnection.cpp
  381. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.weakref]evtconnection.cpp
  382. test_weakref.obj : [.weakref]weakref.cpp
  383. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.weakref]weakref.cpp
  384. test_xlocale.obj : [.xlocale]xlocale.cpp
  385. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.xlocale]xlocale.cpp
  386. test_xmltest.obj : [.xml]xmltest.cpp
  387. $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.xml]xmltest.cpp
  388. test_gui_sample_rc.obj : [...]samples]sample.rc
  389. $(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_5) $(__DEBUG_DEFINE_p_5) $(__EXCEPTIONS_DEFINE_p_5) $(__RTTI_DEFINE_p_5) $(__THREAD_DEFINE_p_5) --include-dir $(srcdir) $(__DLLFLAG_p_5) --include-dir [...]samples $(__RCDEFDIR_p_1) --include-dir $(top_srcdir)]include
  390. test_gui_asserthelper.obj : asserthelper.cpp
  391. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) asserthelper.cpp
  392. test_gui_test.obj : test.cpp
  393. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) test.cpp
  394. test_gui_testableframe.obj : testableframe.cpp
  395. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) testableframe.cpp
  396. test_gui_rect.obj : [.geometry]rect.cpp
  397. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.geometry]rect.cpp
  398. test_gui_size.obj : [.geometry]size.cpp
  399. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.geometry]size.cpp
  400. test_gui_point.obj : [.geometry]point.cpp
  401. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.geometry]point.cpp
  402. test_gui_bitmap.obj : [.graphics]bitmap.cpp
  403. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]bitmap.cpp
  404. test_gui_colour.obj : [.graphics]colour.cpp
  405. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]colour.cpp
  406. test_gui_ellipsization.obj : [.graphics]ellipsization.cpp
  407. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]ellipsization.cpp
  408. test_gui_measuring.obj : [.graphics]measuring.cpp
  409. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]measuring.cpp
  410. test_gui_config.obj : [.config]config.cpp
  411. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.config]config.cpp
  412. test_gui_bitmapcomboboxtest.obj : [.controls]bitmapcomboboxtest.cpp
  413. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]bitmapcomboboxtest.cpp
  414. test_gui_bitmaptogglebuttontest.obj : [.controls]bitmaptogglebuttontest.cpp
  415. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]bitmaptogglebuttontest.cpp
  416. test_gui_bookctrlbasetest.obj : [.controls]bookctrlbasetest.cpp
  417. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]bookctrlbasetest.cpp
  418. test_gui_buttontest.obj : [.controls]buttontest.cpp
  419. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]buttontest.cpp
  420. test_gui_checkboxtest.obj : [.controls]checkboxtest.cpp
  421. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]checkboxtest.cpp
  422. test_gui_checklistboxtest.obj : [.controls]checklistboxtest.cpp
  423. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]checklistboxtest.cpp
  424. test_gui_choicebooktest.obj : [.controls]choicebooktest.cpp
  425. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]choicebooktest.cpp
  426. test_gui_choicetest.obj : [.controls]choicetest.cpp
  427. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]choicetest.cpp
  428. test_gui_comboboxtest.obj : [.controls]comboboxtest.cpp
  429. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]comboboxtest.cpp
  430. test_gui_frametest.obj : [.controls]frametest.cpp
  431. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]frametest.cpp
  432. test_gui_gaugetest.obj : [.controls]gaugetest.cpp
  433. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]gaugetest.cpp
  434. test_gui_gridtest.obj : [.controls]gridtest.cpp
  435. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]gridtest.cpp
  436. test_gui_headerctrltest.obj : [.controls]headerctrltest.cpp
  437. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]headerctrltest.cpp
  438. test_gui_htmllboxtest.obj : [.controls]htmllboxtest.cpp
  439. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]htmllboxtest.cpp
  440. test_gui_hyperlinkctrltest.obj : [.controls]hyperlinkctrltest.cpp
  441. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]hyperlinkctrltest.cpp
  442. test_gui_itemcontainertest.obj : [.controls]itemcontainertest.cpp
  443. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]itemcontainertest.cpp
  444. test_gui_label.obj : [.controls]label.cpp
  445. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]label.cpp
  446. test_gui_listbasetest.obj : [.controls]listbasetest.cpp
  447. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listbasetest.cpp
  448. test_gui_listbooktest.obj : [.controls]listbooktest.cpp
  449. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listbooktest.cpp
  450. test_gui_listboxtest.obj : [.controls]listboxtest.cpp
  451. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listboxtest.cpp
  452. test_gui_listctrltest.obj : [.controls]listctrltest.cpp
  453. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listctrltest.cpp
  454. test_gui_listviewtest.obj : [.controls]listviewtest.cpp
  455. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listviewtest.cpp
  456. test_gui_notebooktest.obj : [.controls]notebooktest.cpp
  457. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]notebooktest.cpp
  458. test_gui_pickerbasetest.obj : [.controls]pickerbasetest.cpp
  459. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]pickerbasetest.cpp
  460. test_gui_pickertest.obj : [.controls]pickertest.cpp
  461. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]pickertest.cpp
  462. test_gui_radioboxtest.obj : [.controls]radioboxtest.cpp
  463. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]radioboxtest.cpp
  464. test_gui_radiobuttontest.obj : [.controls]radiobuttontest.cpp
  465. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]radiobuttontest.cpp
  466. test_gui_rearrangelisttest.obj : [.controls]rearrangelisttest.cpp
  467. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]rearrangelisttest.cpp
  468. test_gui_richtextctrltest.obj : [.controls]richtextctrltest.cpp
  469. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]richtextctrltest.cpp
  470. test_gui_slidertest.obj : [.controls]slidertest.cpp
  471. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]slidertest.cpp
  472. test_gui_spinctrldbltest.obj : [.controls]spinctrldbltest.cpp
  473. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]spinctrldbltest.cpp
  474. test_gui_spinctrltest.obj : [.controls]spinctrltest.cpp
  475. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]spinctrltest.cpp
  476. test_gui_textctrltest.obj : [.controls]textctrltest.cpp
  477. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]textctrltest.cpp
  478. test_gui_textentrytest.obj : [.controls]textentrytest.cpp
  479. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]textentrytest.cpp
  480. test_gui_togglebuttontest.obj : [.controls]togglebuttontest.cpp
  481. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]togglebuttontest.cpp
  482. test_gui_toolbooktest.obj : [.controls]toolbooktest.cpp
  483. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]toolbooktest.cpp
  484. test_gui_treebooktest.obj : [.controls]treebooktest.cpp
  485. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]treebooktest.cpp
  486. test_gui_treectrltest.obj : [.controls]treectrltest.cpp
  487. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]treectrltest.cpp
  488. test_gui_virtlistctrltest.obj : [.controls]virtlistctrltest.cpp
  489. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]virtlistctrltest.cpp
  490. test_gui_windowtest.obj : [.controls]windowtest.cpp
  491. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]windowtest.cpp
  492. test_gui_clone.obj : [.events]clone.cpp
  493. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.events]clone.cpp
  494. test_gui_propagation.obj : [.events]propagation.cpp
  495. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.events]propagation.cpp
  496. test_gui_keyboard.obj : [.events]keyboard.cpp
  497. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.events]keyboard.cpp
  498. test_gui_fonttest.obj : [.font]fonttest.cpp
  499. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.font]fonttest.cpp
  500. test_gui_image.obj : [.image]image.cpp
  501. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.image]image.cpp
  502. test_gui_rawbmp.obj : [.image]rawbmp.cpp
  503. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.image]rawbmp.cpp
  504. test_gui_htmlwindow.obj : [.html]htmlwindow.cpp
  505. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.html]htmlwindow.cpp
  506. test_gui_accelentry.obj : [.menu]accelentry.cpp
  507. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.menu]accelentry.cpp
  508. test_gui_menu.obj : [.menu]menu.cpp
  509. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.menu]menu.cpp
  510. test_gui_guifuncs.obj : [.misc]guifuncs.cpp
  511. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]guifuncs.cpp
  512. test_gui_selstoretest.obj : [.misc]selstoretest.cpp
  513. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]selstoretest.cpp
  514. test_gui_garbage.obj : [.misc]garbage.cpp
  515. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]garbage.cpp
  516. test_gui_settings.obj : [.misc]settings.cpp
  517. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]settings.cpp
  518. test_gui_socket.obj : [.net]socket.cpp
  519. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS)/warn=(disable=REFTEMPORARY)\
  520. [.net]socket.cpp
  521. test_gui_boxsizer.obj : [.sizers]boxsizer.cpp
  522. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.sizers]boxsizer.cpp
  523. test_gui_clientsize.obj : [.window]clientsize.cpp
  524. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.window]clientsize.cpp
  525. test_gui_setsize.obj : [.window]setsize.cpp
  526. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.window]setsize.cpp
  527. test_gui_xrctest.obj : [.xml]xrctest.cpp
  528. $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.xml]xrctest.cpp