From 62edfd9e59716fff99be8ee669b784333fb99cd5 Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Fri, 12 Nov 1999 11:02:47 +0000 Subject: [PATCH] Committing in . 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 | 51 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/unix/descrip.mms diff --git a/src/unix/descrip.mms b/src/unix/descrip.mms new file mode 100644 index 0000000000..3370b6deba --- /dev/null +++ b/src/unix/descrip.mms @@ -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 -- 2.45.2