]>
Commit | Line | Data |
---|---|---|
c11b4853 JJ |
1 | #***************************************************************************** |
2 | # * | |
3 | # Make file for VMS * | |
4 | # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) * | |
5 | # Date : 7 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)/incl=([],[-]) | |
14 | .else | |
15 | .ifdef __WXGTK__ | |
16 | CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\ | |
17 | /assume=(nostdnew,noglobal_array_new)/incl=([],[-]) | |
18 | .else | |
19 | .ifdef __WXGTK2__ | |
20 | CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\ | |
21 | /assume=(nostdnew,noglobal_array_new)/incl=([],[-]) | |
22 | .else | |
23 | .ifdef __WXX11__ | |
24 | CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\ | |
25 | /name=(as_is,short)/assume=(nostdnew,noglobal_array_new)/incl=([],[-]) | |
26 | .else | |
27 | CXX_DEFINE = | |
28 | .endif | |
29 | .endif | |
30 | .endif | |
31 | .endif | |
32 | ||
33 | .suffixes : .cpp | |
34 | ||
35 | .cpp.obj : | |
36 | cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp | |
37 | ||
38 | all : | |
39 | .ifdef __WXMOTIF__ | |
40 | $(MMS)$(MMSQUALIFIERS) debugrpt.exe | |
41 | .else | |
42 | .ifdef __WXGTK__ | |
43 | $(MMS)$(MMSQUALIFIERS) debugrpt_gtk.exe | |
44 | .else | |
45 | .ifdef __WXGTK2__ | |
46 | $(MMS)$(MMSQUALIFIERS) debugrpt_gtk2.exe | |
47 | .else | |
48 | .ifdef __WXX11__ | |
49 | $(MMS)$(MMSQUALIFIERS) debugrpt_x11.exe | |
50 | .endif | |
51 | .endif | |
52 | .endif | |
53 | .endif | |
54 | ||
55 | OBJS=debugrpt.obj | |
56 | ||
57 | .ifdef __WXMOTIF__ | |
58 | debugrpt.exe : $(OBJS) | |
59 | cxxlink $(OBJS),[--.lib]vms/opt | |
60 | .else | |
61 | .ifdef __WXGTK__ | |
62 | debugrpt_gtk.exe : $(OBJS) | |
63 | cxxlink/exec=debugrpt_gtk.exe $(OBJS),[--.lib]vms_gtk/opt | |
64 | .else | |
65 | .ifdef __WXGTK2__ | |
66 | debugrpt_gtk2.exe : $(OBJS) | |
67 | cxxlink/exec=debugrpt_gtk2.exe $(OBJS),[--.lib]vms_gtk2/opt | |
68 | .else | |
69 | .ifdef __WXX11__ | |
70 | debugrpt_x11.exe : $(OBJS) | |
71 | cxxlink/exec=debugrpt_x11.exe $(OBJS),[--.lib]vms_x11_univ/opt | |
72 | .endif | |
73 | .endif | |
74 | .endif | |
75 | .endif | |
76 | ||
77 | debugrpt.obj : debugrpt.cpp |