set up for OpenVMS richtext & regex and add more samples in compile cascade
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62258 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
57cc93eb59
commit
95fbecf646
57
demos/forty/descrip.mms
Normal file
57
demos/forty/descrip.mms
Normal file
@ -0,0 +1,57 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 3 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) forty.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) forty_gtk.exe
|
||||
.endif
|
||||
.endif
|
||||
|
||||
OBJS=canvas.obj,card.obj,forty.obj,game.obj,pile.obj,playerdg.obj,scoredg.obj,\
|
||||
scorefil.obj
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
forty.exe : $(OBJS)
|
||||
cxxlink/exec=forty.exe $(OBJS),[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
forty_gtk.exe : $(OBJS)
|
||||
cxxlink/exec=forty_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
|
||||
.endif
|
||||
.endif
|
||||
|
||||
canvas.obj : canvas.cpp
|
||||
card.obj : card.cpp
|
||||
forty.obj : forty.cpp
|
||||
game.obj : game.cpp
|
||||
pile.obj : pile.cpp
|
||||
playerdg.obj : playerdg.cpp
|
||||
scoredg.obj : scoredg.cpp
|
||||
scorefil.obj : scorefil.cpp
|
49
demos/fractal/descrip.mms
Normal file
49
demos/fractal/descrip.mms
Normal file
@ -0,0 +1,49 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 3 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) fractal.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) fractal_gtk.exe
|
||||
.endif
|
||||
.endif
|
||||
|
||||
OBJS=fractal.obj
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
fractal.exe : $(OBJS)
|
||||
cxxlink/exec=fractal.exe $(OBJS),[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
fractal_gtk.exe : $(OBJS)
|
||||
cxxlink/exec=fractal_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
|
||||
.endif
|
||||
.endif
|
||||
|
||||
fractal.obj : fractal.cpp
|
52
demos/life/descrip.mms
Normal file
52
demos/life/descrip.mms
Normal file
@ -0,0 +1,52 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 5 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) life.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) life_gtk.exe
|
||||
.endif
|
||||
.endif
|
||||
|
||||
OBJS=life.obj,dialogs.obj,game.obj,reader.obj
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
life.exe : $(OBJS)
|
||||
cxxlink/exec=life.exe $(OBJS),[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
life_gtk.exe : $(OBJS)
|
||||
cxxlink/exec=life_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
|
||||
.endif
|
||||
.endif
|
||||
|
||||
life.obj : life.cpp
|
||||
dialogs.obj : dialogs.cpp
|
||||
game.obj : game.cpp
|
||||
reader.obj : reader.cpp
|
49
demos/poem/descrip.mms
Normal file
49
demos/poem/descrip.mms
Normal file
@ -0,0 +1,49 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 5 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) wxpoem.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) wxpoem_gtk.exe
|
||||
.endif
|
||||
.endif
|
||||
|
||||
OBJS=wxpoem.obj
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
wxpoem.exe : $(OBJS)
|
||||
cxxlink/exec=wxpoem.exe $(OBJS),[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
wxpoem_gtk.exe : $(OBJS)
|
||||
cxxlink/exec=wxpoem_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
|
||||
.endif
|
||||
.endif
|
||||
|
||||
wxpoem.obj : wxpoem.cpp
|
28
descrip.mms
28
descrip.mms
@ -2,7 +2,7 @@
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 22 September 2009 *
|
||||
# Date : 5 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
@ -51,13 +51,25 @@ gtk : [.include.wx]setup.h
|
||||
set default [-.propgrid]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
library [--.lib]libwx_gtk.olb [.CXX_REPOSITORY]*.obj
|
||||
set default [-.regex]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.ribbon]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.richtext]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.gtk1]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
library [--.lib]libwx_gtk.olb [.CXX_REPOSITORY]*.obj
|
||||
set default [--.demos.bombs]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.forty]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.fractal]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.life]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.poem]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [--.samples.calendar]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.aui]
|
||||
@ -92,10 +104,12 @@ gtk : [.include.wx]setup.h
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.propgrid]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.regtest]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.ribbon]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.richedit]
|
||||
# $(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.richtext]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.sockets]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.xrc]
|
||||
@ -125,8 +139,12 @@ gtk2 : [.include.wx]setup.h
|
||||
set default [-.propgrid]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK2__=1)
|
||||
library [--.lib]libwx_gtk2.olb [.CXX_REPOSITORY]*.obj
|
||||
set default [-.regex]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK2__=1)
|
||||
set default [-.ribbon]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK2__=1)
|
||||
set default [-.richtext]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK2__=1)
|
||||
set default [-.gtk]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK2__=1)
|
||||
library [--.lib]libwx_gtk2.olb [.CXX_REPOSITORY]*.obj
|
||||
@ -187,8 +205,12 @@ x11 : [.include.wx]setup.h
|
||||
set default [-.propgrid]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXX11__=1,__WXUNIVERSAL__=1)
|
||||
library [--.lib]libwx_x11_univ.olb [.CXX_REPOSITORY]*.obj
|
||||
set default [-.regex]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXX11__=1,__WXUNIVERSAL__=1)
|
||||
set default [-.ribbon]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXX11__=1,__WXUNIVERSAL__=1)
|
||||
set default [-.richtext]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXX11__=1,__WXUNIVERSAL__=1)
|
||||
set default [-.x11]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXX11__=1,__WXUNIVERSAL__=1)
|
||||
set default [-.univ]
|
||||
|
77
samples/regtest/descrip.mms
Normal file
77
samples/regtest/descrip.mms
Normal file
@ -0,0 +1,77 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 3 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) regtest.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) regtest_gtk.exe
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
$(MMS)$(MMSQUALIFIERS) regtest_gtk2.exe
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
$(MMS)$(MMSQUALIFIERS) regtest_x11.exe
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
OBJS=regtest.obj
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
regtest.exe : $(OBJS)
|
||||
cxxlink $(OBJS),[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
regtest_gtk.exe : $(OBJS)
|
||||
cxxlink/exec=regtest_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
regtest_gtk2.exe : $(OBJS)
|
||||
cxxlink/exec=regtest_gtk2.exe $(OBJS),[--.lib]vms_gtk2/opt
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
regtest_x11.exe : $(OBJS)
|
||||
cxxlink/exec=regtest_x11.exe $(OBJS),[--.lib]vms_x11_univ/opt
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
regtest.obj : regtest.cpp
|
77
samples/richtext/descrip.mms
Normal file
77
samples/richtext/descrip.mms
Normal file
@ -0,0 +1,77 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 2 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) richtext.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) richtext_gtk.exe
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
$(MMS)$(MMSQUALIFIERS) richtext_gtk2.exe
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
$(MMS)$(MMSQUALIFIERS) richtext_x11.exe
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
OBJS=richtext.obj
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
richtext.exe : $(OBJS)
|
||||
cxxlink $(OBJS),[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
richtext_gtk.exe : $(OBJS)
|
||||
cxxlink/exec=richtext_gtk.exe $(OBJS),[--.lib]vms_gtk/opt
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
richtext_gtk2.exe : $(OBJS)
|
||||
cxxlink/exec=richtext_gtk2.exe $(OBJS),[--.lib]vms_gtk2/opt
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
richtext_x11.exe : $(OBJS)
|
||||
cxxlink/exec=richtext_x11.exe $(OBJS),[--.lib]vms_x11_univ/opt
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
richtext.obj : richtext.cpp
|
@ -3,7 +3,7 @@
|
||||
* Template for the set.h file for VMS *
|
||||
* Created from setup.h_in *
|
||||
* Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
* Date : 18 September 2009 *
|
||||
* Date : 3 October 2009 *
|
||||
* *
|
||||
*****************************************************************************/
|
||||
|
||||
@ -317,7 +317,7 @@ typedef pid_t GPid;
|
||||
|
||||
#define wxUSE_ANY 1
|
||||
|
||||
#define wxUSE_REGEX 0
|
||||
#define wxUSE_REGEX 1
|
||||
|
||||
#define wxUSE_SYSTEM_OPTIONS 1
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 23 March 2009 *
|
||||
# Date : 3 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
@ -10,24 +10,26 @@
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)
|
||||
/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
|
||||
CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)/incl=[-.regex]
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm
|
||||
/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
|
||||
CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/incl=[-.regex]
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm
|
||||
/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
|
||||
CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)\
|
||||
/ieee=denorm/incl=[-.regex]
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
|
||||
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
|
||||
CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)
|
||||
/name=(as_is,short)/incl=[-.regex]
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
CC_DEFINE =
|
||||
|
78
src/regex/descrip.mms
Normal file
78
src/regex/descrip.mms
Normal file
@ -0,0 +1,78 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 5 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)/include=[]
|
||||
CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)/include=[]
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)/include=[]
|
||||
CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/include=[]
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)/include=[]
|
||||
CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)\
|
||||
/ieee=denorm/include=[]
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)/include=[]
|
||||
CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)/include=[]
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
CC_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
.c.obj :
|
||||
cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c
|
||||
|
||||
OBJECTS=regcomp.obj,regerror.obj,regexec.obj,regfree.obj,\
|
||||
regfronts.obj,tclUniData.obj
|
||||
|
||||
SOURCES=regcomp.c,regc_color.c,regc_cvec.c,regc_lex.c,regc_locale.c,\
|
||||
regc_nfa.c,regerror.c,regexec.c,rege_dfa.c,regfree.c,regfronts.c,\
|
||||
tclUniData.c
|
||||
|
||||
all : $(SOURCES)
|
||||
$(MMS)$(MMSQUALIFIERS) $(OBJECTS)
|
||||
.ifdef __WXMOTIF__
|
||||
library [--.lib]libwx_motif.olb $(OBJECTS)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
library [--.lib]libwx_gtk.olb $(OBJECTS)
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
library [--.lib]libwx_gtk2.olb $(OBJECTS)
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
library [--.lib]libwx_x11_univ.olb $(OBJECTS)
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
regcomp.obj : regcomp.c
|
||||
regerror.obj : regerror.c
|
||||
regexec.obj : regexec.c
|
||||
regfree.obj : regfree.c
|
||||
regfronts.obj : regfronts.c
|
||||
tclUniData.obj : tclUniData.c
|
88
src/richtext/descrip.mms
Normal file
88
src/richtext/descrip.mms
Normal file
@ -0,0 +1,88 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
|
||||
# Date : 3 October 2009 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
|
||||
CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
|
||||
/name=(as_is,short)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
CC_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
.c.obj :
|
||||
cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c
|
||||
|
||||
OBJECTS=richtextbuffer.obj,richtextctrl.obj,\
|
||||
richtextformatdlg.obj,richtexthtml.obj,\
|
||||
richtextindentspage.obj,richtextprint.obj,\
|
||||
richtextstyledlg.obj,richtextstylepage.obj,richtextstyles.obj,\
|
||||
richtextsymboldlg.obj,richtexttabspage.obj,richtextxml.obj
|
||||
|
||||
SOURCES=richtextbuffer.cpp,richtextbulletspage.cpp,richtextctrl.cpp,\
|
||||
richtextfontpage.cpp,richtextformatdlg.cpp,richtexthtml.cpp,\
|
||||
richtextindentspage.cpp,richtextliststylepage.cpp,richtextprint.cpp,\
|
||||
richtextstyledlg.cpp,richtextstylepage.cpp,richtextstyles.cpp,\
|
||||
richtextsymboldlg.cpp,richtexttabspage.cpp,richtextxml.cpp
|
||||
|
||||
|
||||
all : $(SOURCES)
|
||||
$(MMS)$(MMSQUALIFIERS) $(OBJECTS)
|
||||
.ifdef __WXMOTIF__
|
||||
library [--.lib]libwx_motif.olb $(OBJECTS)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
library [--.lib]libwx_gtk.olb $(OBJECTS)
|
||||
.else
|
||||
.ifdef __WXGTK2__
|
||||
library [--.lib]libwx_gtk2.olb $(OBJECTS)
|
||||
.else
|
||||
.ifdef __WXX11__
|
||||
library [--.lib]libwx_x11_univ.olb $(OBJECTS)
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
.endif
|
||||
|
||||
richtextbuffer.obj : richtextbuffer.cpp
|
||||
richtextctrl.obj : richtextctrl.cpp
|
||||
richtextformatdlg.obj : richtextformatdlg.cpp
|
||||
richtexthtml.obj : richtexthtml.cpp
|
||||
richtextindentspage.obj : richtextindentspage.cpp
|
||||
richtextprint.obj : richtextprint.cpp
|
||||
richtextstyledlg.obj : richtextstyledlg.cpp
|
||||
richtextstylepage.obj : richtextstylepage.cpp
|
||||
richtextstyles.obj : richtextstyles.cpp
|
||||
richtextsymboldlg.obj : richtextsymboldlg.cpp
|
||||
richtexttabspage.obj : richtexttabspage.cpp
|
||||
richtextxml.obj : richtextxml.cpp
|
Loading…
Reference in New Issue
Block a user