43dc9c15ef
Files needed to compile the dialogs sample on VMS Added Files: wxWindows/samples/dialogs/descrip.mms wxWindows/samples/dialogs/dialogs.opt git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
906 B
Plaintext
31 lines
906 B
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
|
|
|
|
all :
|
|
$(MMS)$(MMSQUALIFIERS) dialogs.exe
|
|
|
|
dialogs.exe : dialogs.obj
|
|
.ifdef __WXMOTIF__
|
|
cxxlink dialogs,dialogs/opt
|
|
.endif
|
|
|
|
dialogs.obj : dialogs.cpp
|