]> git.saurik.com Git - wxWidgets.git/blob - src/x11/descrip.mms
Partial fix for mono wxMemoryDC not working.
[wxWidgets.git] / src / x11 / descrip.mms
1 #*****************************************************************************
2 # *
3 # Make file for VMS *
4 # Author : J.Jansen (joukj@hrem.stm.tudelft.nl) *
5 # Date : 10 November 1999 *
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 CXX_DEFINE =
17 .endif
18
19 .suffixes : .cpp
20
21 .cpp.obj :
22 cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
23 .c.obj :
24 cc $(CFLAGS)$(CC_DEFINE) $(MMS$TARGET_NAME).c
25
26 OBJECTS = \
27 brush.obj,\
28 pen.obj
29
30 SOURCES = \
31 brush.cpp,\
32 pen.cpp
33
34 all : $(SOURCES)
35 $(MMS)$(MMSQUALIFIERS) $(OBJECTS)
36 .ifdef __WXMOTIF__
37 library [--.lib]libwx_motif.olb $(OBJECTS)
38 .endif
39
40 brush.obj : brush.cpp
41 pen.obj : pen.cpp