]>
Commit | Line | Data |
---|---|---|
95fbecf6 JJ |
1 | #***************************************************************************** |
2 | # * | |
3 | # Make file for VMS * | |
4 | # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * | |
5 | # Date : 3 October 2009 * | |
6 | # * | |
7 | #***************************************************************************** | |
8 | .first | |
9 | define wx [--.include.wx] | |
10 | ||
11 | .ifdef __WXMOTIF__ | |
12 | CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\ | |
13 | /assume=(nostdnew,noglobal_array_new) | |
14 | CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short) | |
15 | .else | |
16 | .ifdef __WXGTK__ | |
17 | CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\ | |
18 | /assume=(nostdnew,noglobal_array_new) | |
19 | CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm | |
20 | .else | |
21 | .ifdef __WXGTK2__ | |
22 | CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\ | |
23 | /assume=(nostdnew,noglobal_array_new) | |
24 | CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm | |
25 | .else | |
26 | .ifdef __WXX11__ | |
27 | CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\ | |
28 | /name=(as_is,short)/assume=(nostdnew,noglobal_array_new) | |
29 | CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\ | |
30 | /name=(as_is,short) | |
31 | .else | |
32 | CXX_DEFINE = | |
33 | CC_DEFINE = | |
34 | .endif | |
35 | .endif | |
36 | .endif | |
37 | .endif | |
38 | ||
39 | .suffixes : .cpp | |
40 | ||
41 | .cpp.obj : | |
42 | cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp | |
43 | .c.obj : | |
44 | cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c | |
45 | ||
46 | OBJECTS=richtextbuffer.obj,richtextctrl.obj,\ | |
47 | richtextformatdlg.obj,richtexthtml.obj,\ | |
48 | richtextindentspage.obj,richtextprint.obj,\ | |
49 | richtextstyledlg.obj,richtextstylepage.obj,richtextstyles.obj,\ | |
50 | richtextsymboldlg.obj,richtexttabspage.obj,richtextxml.obj | |
51 | ||
52 | SOURCES=richtextbuffer.cpp,richtextbulletspage.cpp,richtextctrl.cpp,\ | |
53 | richtextfontpage.cpp,richtextformatdlg.cpp,richtexthtml.cpp,\ | |
54 | richtextindentspage.cpp,richtextliststylepage.cpp,richtextprint.cpp,\ | |
55 | richtextstyledlg.cpp,richtextstylepage.cpp,richtextstyles.cpp,\ | |
56 | richtextsymboldlg.cpp,richtexttabspage.cpp,richtextxml.cpp | |
57 | ||
58 | ||
59 | all : $(SOURCES) | |
60 | $(MMS)$(MMSQUALIFIERS) $(OBJECTS) | |
61 | .ifdef __WXMOTIF__ | |
62 | library [--.lib]libwx_motif.olb $(OBJECTS) | |
63 | .else | |
64 | .ifdef __WXGTK__ | |
65 | library [--.lib]libwx_gtk.olb $(OBJECTS) | |
66 | .else | |
67 | .ifdef __WXGTK2__ | |
68 | library [--.lib]libwx_gtk2.olb $(OBJECTS) | |
69 | .else | |
70 | .ifdef __WXX11__ | |
71 | library [--.lib]libwx_x11_univ.olb $(OBJECTS) | |
72 | .endif | |
73 | .endif | |
74 | .endif | |
75 | .endif | |
76 | ||
77 | richtextbuffer.obj : richtextbuffer.cpp | |
78 | richtextctrl.obj : richtextctrl.cpp | |
79 | richtextformatdlg.obj : richtextformatdlg.cpp | |
80 | richtexthtml.obj : richtexthtml.cpp | |
81 | richtextindentspage.obj : richtextindentspage.cpp | |
82 | richtextprint.obj : richtextprint.cpp | |
83 | richtextstyledlg.obj : richtextstyledlg.cpp | |
84 | richtextstylepage.obj : richtextstylepage.cpp | |
85 | richtextstyles.obj : richtextstyles.cpp | |
86 | richtextsymboldlg.obj : richtextsymboldlg.cpp | |
87 | richtexttabspage.obj : richtexttabspage.cpp | |
88 | richtextxml.obj : richtextxml.cpp |