| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693 |
- #*****************************************************************************
- # *
- # Make file for VMS *
- # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
- # Date : 28 September 2011 *
- # *
- #*****************************************************************************
- .first
- define wx [-.include.wx]
- .ifdef __WXMOTIF__
- TEST_CXXFLAGS = /define=(__WXMOTIF__=1,"wxUSE_GUI=0")/name=(as_is,short)\
- /assume=(nostdnew,noglobal_array_new)
- TEST_GUI_CXXFLAGS = /define=(__WXMOTIF__=1,"wxUSE_GUI=1")/name=(as_is,short)\
- /assume=(nostdnew,noglobal_array_new)
- .else
- .ifdef __WXGTK__
- TEST_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=0","__USE_STD_IOSTREAM=1",\
- "_USE_STD_STAT=1")/float=ieee/name=(as_is,short)/ieee=denorm\
- /assume=(nostdnew,noglobal_array_new)/include=[]
- TEST_GUI_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=1","__USE_STD_IOSTREAM=1")\
- /float=ieee/name=(as_is,short)/ieee=denorm\
- /assume=(nostdnew,noglobal_array_new)/include=[]
- .else
- .ifdef __WXX11__
- TEST_CXXFLAGS = /define=(__WXX11__=1,__WXUNIVERSAL__==1,"wxUSE_GUI=0")/float=ieee\
- /name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
- TEST_GUI_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=1")/float=ieee/name=(as_is,short)/ieee=denorm\
- /assume=(nostdnew,noglobal_array_new)
- .else
- .ifdef __WXGTK2__
- TEST_CXXFLAGS = /define=(__WXGTK__=1,VMS_GTK2==1,"wxUSE_GUI=0")/float=ieee\
- /name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
- TEST_GUI_CXXFLAGS = /define=(__WXGTK__=1,"wxUSE_GUI=1")/float=ieee/name=(as_is,short)/ieee=denorm\
- /assume=(nostdnew,noglobal_array_new)
- .else
- CXX_DEFINE =
- CC_DEFINE =
- .endif
- .endif
- .endif
- .endif
- .suffixes : .cpp
- .cpp.obj :
- cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
- CXXC=cxx
- TEST_OBJECTS = \
- test_anytest.obj,\
- test_archivetest.obj,\
- test_arrays.obj,\
- test_base64.obj,\
- test_cmdlinetest.obj,\
- test_fileconf.obj,\
- test_regconf.obj,\
- test_datetimetest.obj,\
- test_evthandler.obj,\
- test_evtsource.obj,\
- test_stopwatch.obj,\
- test_timertest.obj,\
- test_exec.obj,\
- test_dir.obj,\
- test_filefn.obj,\
- test_filetest.obj,\
- test_filekind.obj,\
- test_filenametest.obj,\
- test_filesystest.obj,\
- test_fontmaptest.obj,\
- test_formatconvertertest.obj,\
- test_hashes.obj,\
- test_output.obj,\
- test_input.obj,\
- test_intltest.obj,\
- test_lists.obj,\
- test_logtest.obj,\
- test_longlongtest.obj,\
- test_convautotest.obj,\
- test_mbconvtest.obj,\
- test_dynamiclib.obj,\
- test_environ.obj,\
- test_metatest.obj,\
- test_misctests.obj,\
- test_module.obj,\
- test_pathlist.obj,\
- test_typeinfotest.obj
- TEST_OBJECTS1=test_ipc.obj,\
- test_socket.obj,\
- test_regextest.obj,\
- test_wxregextest.obj,\
- test_scopeguardtest.obj,\
- test_iostream.obj,\
- test_strings.obj,\
- test_stdstrings.obj,\
- test_tokenizer.obj,\
- test_unichar.obj,\
- test_unicode.obj,\
- test_crt.obj,\
- test_vsnprintf.obj,\
- test_bstream.obj,\
- test_datastreamtest.obj,\
- test_ffilestream.obj,\
- test_fileback.obj,\
- test_filestream.obj,\
- test_iostreams.obj,\
- test_largefile.obj,\
- test_memstream.obj,\
- test_socketstream.obj,\
- test_sstream.obj,\
- test_stdstream.obj,\
- test_tempfile.obj,\
- test_textstreamtest.obj,\
- test_zlibstream.obj,\
- test_textfiletest.obj,\
- test_atomic.obj,\
- test_misc.obj,\
- test_queue.obj,\
- test_tls.obj,\
- test_ftp.obj,\
- test_uris.obj,\
- test_url.obj,\
- test_vectors.obj,\
- test_evtconnection.obj,\
- test_weakref.obj,\
- test_xlocale.obj,\
- test_xmltest.obj
- TEST_L_OBJs=test_ziptest.obj,\
- test_tartest.obj
- TEST_GUI_OBJECTS = \
- test_gui_asserthelper.obj,\
- test_gui_testableframe.obj,\
- test_gui_rect.obj,\
- test_gui_size.obj,\
- test_gui_point.obj,\
- test_gui_bitmap.obj,\
- test_gui_colour.obj,\
- test_gui_ellipsization.obj,\
- test_gui_measuring.obj,\
- test_gui_config.obj,\
- test_gui_bitmapcomboboxtest.obj,\
- test_gui_bitmaptogglebuttontest.obj,\
- test_gui_bookctrlbasetest.obj,\
- test_gui_buttontest.obj
- TEST_GUI_OBJECTS1=test_gui_checkboxtest.obj,\
- test_gui_checklistboxtest.obj,\
- test_gui_choicebooktest.obj,\
- test_gui_choicetest.obj,\
- test_gui_comboboxtest.obj,\
- test_gui_frametest.obj,\
- test_gui_gaugetest.obj,\
- test_gui_gridtest.obj,\
- test_gui_headerctrltest.obj,\
- test_gui_htmllboxtest.obj,\
- test_gui_hyperlinkctrltest.obj,\
- test_gui_itemcontainertest.obj,\
- test_gui_label.obj,\
- test_gui_listbasetest.obj,\
- test_gui_listbooktest.obj,\
- test_gui_listboxtest.obj,\
- test_gui_listctrltest.obj,\
- test_gui_listviewtest.obj,\
- test_gui_notebooktest.obj,\
- test_gui_pickerbasetest.obj,\
- test_gui_pickertest.obj,\
- test_gui_radioboxtest.obj,\
- test_gui_radiobuttontest.obj,\
- test_gui_rearrangelisttest.obj
- TEST_GUI_OBJECTS2=test_gui_richtextctrltest.obj,\
- test_gui_slidertest.obj,\
- test_gui_spinctrldbltest.obj,\
- test_gui_spinctrltest.obj,\
- test_gui_textctrltest.obj,\
- test_gui_textentrytest.obj,\
- test_gui_togglebuttontest.obj,\
- test_gui_toolbooktest.obj,\
- test_gui_treebooktest.obj,\
- test_gui_treectrltest.obj,\
- test_gui_virtlistctrltest.obj,\
- test_gui_windowtest.obj,\
- test_gui_clone.obj,\
- test_gui_propagation.obj,\
- test_gui_keyboard.obj,\
- test_gui_fonttest.obj,\
- test_gui_image.obj,\
- test_gui_rawbmp.obj,\
- test_gui_htmlwindow.obj,\
- test_gui_accelentry.obj,\
- test_gui_menu.obj,\
- test_gui_guifuncs.obj,\
- test_gui_selstoretest.obj,\
- test_gui_garbage.obj,\
- test_gui_settings.obj,\
- test_gui_socket.obj,\
- test_gui_boxsizer.obj,\
- test_gui_clientsize.obj,\
- test_gui_setsize.obj,\
- test_gui_xrctest.obj
- .ifdef __WXMOTIF__
- .else
- .ifdef __WXGTK__
- all : test_gtk.exe test_gui_gtk.exe
- write sys$output "tests created"
- test_gtk.exe : test_test.obj $(TEST_OBJECTS) $(TEST_OBJECTS1) $(TEST_L_OBJS)
- library/create temp.olb $(TEST_OBJECTS)
- library temp.olb $(TEST_OBJECTS1)
- cxxlink/exec=test_gtk.exe test_test.obj,$(TEST_L_OBJS),temp.olb/lib,\
- sys$library:libcppunit.olb/lib,[-.lib]vms_gtk/opt
- delete temp.olb;*
- test_gui_gtk.exe : test_gui_test.obj $(TEST_GUI_OBJECTS) $(TEST_GUI_OBJECTS1)\
- $(TEST_GUI_OBJECTS2)
- library/create temp.olb $(TEST_GUI_OBJECTS)
- library temp.olb $(TEST_GUI_OBJECTS1)
- library temp.olb $(TEST_GUI_OBJECTS2)
- cxxlink/exec=test_gui_gtk.exe test_gui_test.obj,temp.olb/lib,\
- sys$library:libcppunit.olb/lib,[-.lib]vms_gtk/opt
- .else
- .ifdef __WXX11__
- .else
- .ifdef __WXGTK2__
- .else
- .endif
- .endif
- .endif
- .endif
- $(TEST_OBJECTS) : [-.include.wx]setup.h
- $(TEST_GUI_OBJECTS) : [-.include.wx]setup.h
- test_test.obj : test.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) test.cpp
- test_anytest.obj : [.any]anytest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.any]anytest.cpp
- test_archivetest.obj : [.archive]archivetest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.archive]archivetest.cpp
- test_ziptest.obj : [.archive]ziptest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.archive]ziptest.cpp
- test_tartest.obj : [.archive]tartest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.archive]tartest.cpp
- test_arrays.obj : [.arrays]arrays.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.arrays]arrays.cpp
- test_base64.obj : [.base64]base64.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.base64]base64.cpp
- test_cmdlinetest.obj : [.cmdline]cmdlinetest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.cmdline]cmdlinetest.cpp
- test_fileconf.obj : [.config]fileconf.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.config]fileconf.cpp
- test_regconf.obj : [.config]regconf.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.config]regconf.cpp
- test_datetimetest.obj : [.datetime]datetimetest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=INTSIGNCHANGE)\
- [.datetime]datetimetest.cpp
- test_evthandler.obj : [.events]evthandler.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evthandler.cpp
- test_evtsource.obj : [.events]evtsource.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evtsource.cpp
- test_stopwatch.obj : [.events]stopwatch.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]stopwatch.cpp
- test_timertest.obj : [.events]timertest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]timertest.cpp
- test_exec.obj : [.exec]exec.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.exec]exec.cpp
- test_dir.obj : [.file]dir.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.file]dir.cpp
- test_filefn.obj : [.file]filefn.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.file]filefn.cpp
- test_filetest.obj : [.file]filetest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.file]filetest.cpp
- test_filekind.obj : [.filekind]filekind.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.filekind]filekind.cpp
- test_filenametest.obj : [.filename]filenametest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.filename]filenametest.cpp
- test_filesystest.obj : [.filesys]filesystest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.filesys]filesystest.cpp
- test_fontmaptest.obj : [.fontmap]fontmaptest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.fontmap]fontmaptest.cpp
- test_formatconvertertest.obj : [.formatconverter]formatconvertertest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.formatconverter]formatconvertertest.cpp
- test_hashes.obj : [.hashes]hashes.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.hashes]hashes.cpp
- test_output.obj : [.interactive]output.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.interactive]output.cpp
- test_input.obj : [.interactive]input.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.interactive]input.cpp
- test_intltest.obj : [.intl]intltest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.intl]intltest.cpp
- test_lists.obj : [.lists]lists.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.lists]lists.cpp
- test_logtest.obj : [.log]logtest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.log]logtest.cpp
- test_longlongtest.obj : [.longlong]longlongtest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.longlong]longlongtest.cpp
- test_convautotest.obj : [.mbconv]convautotest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.mbconv]convautotest.cpp
- test_mbconvtest.obj : [.mbconv]mbconvtest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.mbconv]mbconvtest.cpp
- test_dynamiclib.obj : [.misc]dynamiclib.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]dynamiclib.cpp
- test_environ.obj : [.misc]environ.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]environ.cpp
- test_metatest.obj : [.misc]metatest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]metatest.cpp
- test_misctests.obj : [.misc]misctests.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]misctests.cpp
- test_module.obj : [.misc]module.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]module.cpp
- test_pathlist.obj : [.misc]pathlist.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]pathlist.cpp
- test_typeinfotest.obj : [.misc]typeinfotest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.misc]typeinfotest.cpp
- test_ipc.obj : [.net]ipc.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.net]ipc.cpp
- test_socket.obj : [.net]socket.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=REFTEMPORARY)\
- [.net]socket.cpp
- test_regextest.obj : [.regex]regextest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.regex]regextest.cpp
- test_wxregextest.obj : [.regex]wxregextest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.regex]wxregextest.cpp
- test_scopeguardtest.obj : [.scopeguard]scopeguardtest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.scopeguard]scopeguardtest.cpp
- test_iostream.obj : [.strings]iostream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]iostream.cpp
- test_strings.obj : [.strings]strings.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=INTSIGNCHANGE)\
- [.strings]strings.cpp
- test_stdstrings.obj : [.strings]stdstrings.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]stdstrings.cpp
- test_tokenizer.obj : [.strings]tokenizer.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]tokenizer.cpp
- test_unichar.obj : [.strings]unichar.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]unichar.cpp
- test_unicode.obj : [.strings]unicode.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]unicode.cpp
- test_crt.obj : [.strings]crt.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]crt.cpp
- test_vsnprintf.obj : [.strings]vsnprintf.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.strings]vsnprintf.cpp
- test_bstream.obj : [.streams]bstream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]bstream.cpp
- test_datastreamtest.obj : [.streams]datastreamtest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]datastreamtest.cpp
- test_ffilestream.obj : [.streams]ffilestream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]ffilestream.cpp
- test_fileback.obj : [.streams]fileback.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]fileback.cpp
- test_filestream.obj : [.streams]filestream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]filestream.cpp
- test_iostreams.obj : [.streams]iostreams.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]iostreams.cpp
- test_largefile.obj : [.streams]largefile.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS)/warn=(disable=INTSIGNCHANGE)\
- [.streams]largefile.cpp
- test_memstream.obj : [.streams]memstream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]memstream.cpp
- test_socketstream.obj : [.streams]socketstream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]socketstream.cpp
- test_sstream.obj : [.streams]sstream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]sstream.cpp
- test_stdstream.obj : [.streams]stdstream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]stdstream.cpp
- test_tempfile.obj : [.streams]tempfile.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]tempfile.cpp
- test_textstreamtest.obj : [.streams]textstreamtest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]textstreamtest.cpp
- test_zlibstream.obj : [.streams]zlibstream.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.streams]zlibstream.cpp
- test_textfiletest.obj : [.textfile]textfiletest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.textfile]textfiletest.cpp
- test_atomic.obj : [.thread]atomic.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]atomic.cpp
- test_misc.obj : [.thread]misc.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]misc.cpp
- test_queue.obj : [.thread]queue.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]queue.cpp
- test_tls.obj : [.thread]tls.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.thread]tls.cpp
- test_ftp.obj : [.uris]ftp.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.uris]ftp.cpp
- test_uris.obj : [.uris]uris.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.uris]uris.cpp
- test_url.obj : [.uris]url.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.uris]url.cpp
- test_vectors.obj : [.vectors]vectors.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.vectors]vectors.cpp
- test_evtconnection.obj : [.weakref]evtconnection.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.weakref]evtconnection.cpp
- test_weakref.obj : [.weakref]weakref.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.weakref]weakref.cpp
- test_xlocale.obj : [.xlocale]xlocale.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.xlocale]xlocale.cpp
- test_xmltest.obj : [.xml]xmltest.cpp
- $(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.xml]xmltest.cpp
- test_gui_sample_rc.obj : [...]samples]sample.rc
- $(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
- test_gui_asserthelper.obj : asserthelper.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) asserthelper.cpp
- test_gui_test.obj : test.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) test.cpp
- test_gui_testableframe.obj : testableframe.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) testableframe.cpp
- test_gui_rect.obj : [.geometry]rect.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.geometry]rect.cpp
- test_gui_size.obj : [.geometry]size.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.geometry]size.cpp
- test_gui_point.obj : [.geometry]point.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.geometry]point.cpp
- test_gui_bitmap.obj : [.graphics]bitmap.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]bitmap.cpp
- test_gui_colour.obj : [.graphics]colour.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]colour.cpp
- test_gui_ellipsization.obj : [.graphics]ellipsization.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]ellipsization.cpp
- test_gui_measuring.obj : [.graphics]measuring.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.graphics]measuring.cpp
- test_gui_config.obj : [.config]config.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.config]config.cpp
- test_gui_bitmapcomboboxtest.obj : [.controls]bitmapcomboboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]bitmapcomboboxtest.cpp
- test_gui_bitmaptogglebuttontest.obj : [.controls]bitmaptogglebuttontest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]bitmaptogglebuttontest.cpp
- test_gui_bookctrlbasetest.obj : [.controls]bookctrlbasetest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]bookctrlbasetest.cpp
- test_gui_buttontest.obj : [.controls]buttontest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]buttontest.cpp
- test_gui_checkboxtest.obj : [.controls]checkboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]checkboxtest.cpp
- test_gui_checklistboxtest.obj : [.controls]checklistboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]checklistboxtest.cpp
- test_gui_choicebooktest.obj : [.controls]choicebooktest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]choicebooktest.cpp
- test_gui_choicetest.obj : [.controls]choicetest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]choicetest.cpp
- test_gui_comboboxtest.obj : [.controls]comboboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]comboboxtest.cpp
- test_gui_frametest.obj : [.controls]frametest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]frametest.cpp
- test_gui_gaugetest.obj : [.controls]gaugetest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]gaugetest.cpp
- test_gui_gridtest.obj : [.controls]gridtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]gridtest.cpp
- test_gui_headerctrltest.obj : [.controls]headerctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]headerctrltest.cpp
- test_gui_htmllboxtest.obj : [.controls]htmllboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]htmllboxtest.cpp
- test_gui_hyperlinkctrltest.obj : [.controls]hyperlinkctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]hyperlinkctrltest.cpp
- test_gui_itemcontainertest.obj : [.controls]itemcontainertest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]itemcontainertest.cpp
- test_gui_label.obj : [.controls]label.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]label.cpp
- test_gui_listbasetest.obj : [.controls]listbasetest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listbasetest.cpp
- test_gui_listbooktest.obj : [.controls]listbooktest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listbooktest.cpp
- test_gui_listboxtest.obj : [.controls]listboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listboxtest.cpp
- test_gui_listctrltest.obj : [.controls]listctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listctrltest.cpp
- test_gui_listviewtest.obj : [.controls]listviewtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]listviewtest.cpp
- test_gui_notebooktest.obj : [.controls]notebooktest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]notebooktest.cpp
- test_gui_pickerbasetest.obj : [.controls]pickerbasetest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]pickerbasetest.cpp
- test_gui_pickertest.obj : [.controls]pickertest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]pickertest.cpp
- test_gui_radioboxtest.obj : [.controls]radioboxtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]radioboxtest.cpp
- test_gui_radiobuttontest.obj : [.controls]radiobuttontest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]radiobuttontest.cpp
- test_gui_rearrangelisttest.obj : [.controls]rearrangelisttest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]rearrangelisttest.cpp
- test_gui_richtextctrltest.obj : [.controls]richtextctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]richtextctrltest.cpp
- test_gui_slidertest.obj : [.controls]slidertest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]slidertest.cpp
- test_gui_spinctrldbltest.obj : [.controls]spinctrldbltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]spinctrldbltest.cpp
- test_gui_spinctrltest.obj : [.controls]spinctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]spinctrltest.cpp
- test_gui_textctrltest.obj : [.controls]textctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]textctrltest.cpp
- test_gui_textentrytest.obj : [.controls]textentrytest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]textentrytest.cpp
- test_gui_togglebuttontest.obj : [.controls]togglebuttontest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]togglebuttontest.cpp
- test_gui_toolbooktest.obj : [.controls]toolbooktest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]toolbooktest.cpp
- test_gui_treebooktest.obj : [.controls]treebooktest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]treebooktest.cpp
- test_gui_treectrltest.obj : [.controls]treectrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]treectrltest.cpp
- test_gui_virtlistctrltest.obj : [.controls]virtlistctrltest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]virtlistctrltest.cpp
- test_gui_windowtest.obj : [.controls]windowtest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.controls]windowtest.cpp
- test_gui_clone.obj : [.events]clone.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.events]clone.cpp
- test_gui_propagation.obj : [.events]propagation.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.events]propagation.cpp
- test_gui_keyboard.obj : [.events]keyboard.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.events]keyboard.cpp
- test_gui_fonttest.obj : [.font]fonttest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.font]fonttest.cpp
- test_gui_image.obj : [.image]image.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.image]image.cpp
- test_gui_rawbmp.obj : [.image]rawbmp.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.image]rawbmp.cpp
- test_gui_htmlwindow.obj : [.html]htmlwindow.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.html]htmlwindow.cpp
- test_gui_accelentry.obj : [.menu]accelentry.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.menu]accelentry.cpp
- test_gui_menu.obj : [.menu]menu.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.menu]menu.cpp
- test_gui_guifuncs.obj : [.misc]guifuncs.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]guifuncs.cpp
- test_gui_selstoretest.obj : [.misc]selstoretest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]selstoretest.cpp
- test_gui_garbage.obj : [.misc]garbage.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]garbage.cpp
- test_gui_settings.obj : [.misc]settings.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.misc]settings.cpp
- test_gui_socket.obj : [.net]socket.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS)/warn=(disable=REFTEMPORARY)\
- [.net]socket.cpp
- test_gui_boxsizer.obj : [.sizers]boxsizer.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.sizers]boxsizer.cpp
- test_gui_clientsize.obj : [.window]clientsize.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.window]clientsize.cpp
- test_gui_setsize.obj : [.window]setsize.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.window]setsize.cpp
- test_gui_xrctest.obj : [.xml]xrctest.cpp
- $(CXXC) /object=[]$@ $(TEST_GUI_CXXFLAGS) [.xml]xrctest.cpp
|