]> git.saurik.com Git - wxWidgets.git/commitdiff
Committing in .
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Fri, 12 Nov 1999 11:02:47 +0000 (11:02 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Fri, 12 Nov 1999 11:02:47 +0000 (11:02 +0000)
 Makefile for VMS
   makes files in src/unix

 Added Files:
  wxWindows/src/unix/descrip.mms

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4493 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/unix/descrip.mms [new file with mode: 0644]

diff --git a/src/unix/descrip.mms b/src/unix/descrip.mms
new file mode 100644 (file)
index 0000000..3370b6d
--- /dev/null
@@ -0,0 +1,51 @@
+#*****************************************************************************
+#                                                                            *
+# Make file for VMS                                                          *
+# Author : J.Jansen (joukj@hrem.stm.tudelft.nl)                              *
+# Date : 10 November 1999                                                     *
+#                                                                            *
+#*****************************************************************************
+.first
+       define wx [--.include.wx]
+
+.ifdef __WXMOTIF__
+CXX_DEFINE = /define=(__WXMOTIF__=1)
+.else
+CXX_DEFINE =
+.endif
+
+.suffixes : .cpp
+
+.cpp.obj :
+       cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
+.c.obj :
+       cc $(CFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).c
+
+OBJECTS = \
+               dialup.obj,\
+               fontenum.obj,\
+               fontutil.obj,\
+               gsocket.obj,\
+               threadpsx.obj,\
+               utilsunx.obj
+
+SOURCES = \
+               dialup.cpp,\
+               fontenum.cpp,\
+               fontutil.cpp,\
+               gsocket.c,\
+               threadpsx.cpp,\
+               utilsunx.cpp
+
+all : $(SOURCES)
+       $(MMS)$(MMSQUALIFIERS) $(OBJECTS)
+.ifdef __WXMOTIF__
+       library [--.lib]libwx_motif.olb $(OBJECTS)
+.endif
+
+dialup.obj : dialup.cpp
+fontenum.obj : fontenum.cpp
+fontutil.obj : fontutil.cpp
+gsocket.obj : gsocket.c
+threadpsx.obj : threadpsx.cpp
+utilsunx.obj : utilsunx.cpp