]> git.saurik.com Git - wxWidgets.git/blame - src/unix/descrip.mms
no more _ftime instead of ftime
[wxWidgets.git] / src / unix / descrip.mms
CommitLineData
62edfd9e
JJ
1#*****************************************************************************
2# *
3# Make file for VMS *
4# Author : J.Jansen (joukj@hrem.stm.tudelft.nl) *
5# Date : 10 November 1999 *
6# *
7#*****************************************************************************
8.first
9 define wx [--.include.wx]
10
11.ifdef __WXMOTIF__
12CXX_DEFINE = /define=(__WXMOTIF__=1)
13.else
14CXX_DEFINE =
15.endif
16
17.suffixes : .cpp
18
19.cpp.obj :
20 cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
21.c.obj :
22 cc $(CFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).c
23
24OBJECTS = \
25 dialup.obj,\
f49676ee 26 dir.obj,\
62edfd9e
JJ
27 fontenum.obj,\
28 fontutil.obj,\
29 gsocket.obj,\
f49676ee 30 mimetype.obj,\
62edfd9e
JJ
31 threadpsx.obj,\
32 utilsunx.obj
33
34SOURCES = \
35 dialup.cpp,\
f49676ee 36 dir.cpp,\
62edfd9e
JJ
37 fontenum.cpp,\
38 fontutil.cpp,\
39 gsocket.c,\
f49676ee 40 mimetype.cpp,\
62edfd9e
JJ
41 threadpsx.cpp,\
42 utilsunx.cpp
43
44all : $(SOURCES)
45 $(MMS)$(MMSQUALIFIERS) $(OBJECTS)
46.ifdef __WXMOTIF__
47 library [--.lib]libwx_motif.olb $(OBJECTS)
48.endif
49
50dialup.obj : dialup.cpp
f49676ee 51dir.obj : dir.cpp
62edfd9e
JJ
52fontenum.obj : fontenum.cpp
53fontutil.obj : fontutil.cpp
54gsocket.obj : gsocket.c
f49676ee 55mimetype.obj : mimetype.cpp
62edfd9e
JJ
56threadpsx.obj : threadpsx.cpp
57utilsunx.obj : utilsunx.cpp