]> git.saurik.com Git - wxWidgets.git/blob - demos/bombs/descrip.mms
Committing in .
[wxWidgets.git] / demos / bombs / descrip.mms
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__
12 CXX_DEFINE = /define=(__WXMOTIF__=1)
13 .else
14 .ifdef __WXGTK__
15 CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
16 /assume=(nostdnew,noglobal_array_new)
17 .else
18 CXX_DEFINE =
19 .endif
20 .endif
21
22 .suffixes : .cpp
23
24 .cpp.obj :
25 cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
26
27 all :
28 .ifdef __WXMOTIF__
29 $(MMS)$(MMSQUALIFIERS) game.exe
30 .else
31 .ifdef __WXGTK__
32 $(MMS)$(MMSQUALIFIERS) game_gtk.exe
33 .endif
34 .endif
35
36 .ifdef __WXMOTIF__
37 game.exe : game.obj bombs1.obj bombs.obj
38 cxxlink game,bombs1,bombs,[--.lib]vms/opt
39 .else
40 .ifdef __WXGTK__
41 game_gtk.exe : game.obj bombs1.obj bombs.obj
42 cxxlink/exec=game_gtk.exe game,bombs1,bombs,[--.lib]vms_gtk/opt
43 .endif
44 .endif
45
46 game.obj : game.cpp
47 bombs1.obj : bombs1.cpp
48 bombs.obj : bombs.cpp