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
This commit is contained in:
parent
0fcdf6dcc5
commit
62edfd9e59
51
src/unix/descrip.mms
Normal file
51
src/unix/descrip.mms
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user