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
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
#*****************************************************************************
|
|
# *
|
|
# 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
|