descrip.mms 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #*****************************************************************************
  2. # *
  3. # Make file for VMS *
  4. # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
  5. # Date : 24 August 2012 *
  6. # *
  7. #*****************************************************************************
  8. .first
  9. define wx [--.include.wx]
  10. .ifdef __WXMOTIF__
  11. CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
  12. /assume=(nostdnew,noglobal_array_new)
  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. .suffixes : .cpp
  22. .cpp.obj :
  23. cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
  24. all :
  25. .ifdef __WXMOTIF__
  26. $(MMS)$(MMSQUALIFIERS) game.exe
  27. .else
  28. .ifdef __WXGTK__
  29. $(MMS)$(MMSQUALIFIERS) game_gtk.exe
  30. .endif
  31. .endif
  32. .ifdef __WXMOTIF__
  33. game.exe : game.obj bombs1.obj bombs.obj
  34. cxxlink game,bombs1,bombs,[--.lib]vms/opt
  35. .else
  36. .ifdef __WXGTK__
  37. game_gtk.exe : game.obj bombs1.obj bombs.obj
  38. cxxlink/exec=game_gtk.exe game,bombs1,bombs,[--.lib]vms_gtk/opt
  39. .endif
  40. .endif
  41. game.obj : game.cpp [--.include.wx]setup.h
  42. bombs1.obj : bombs1.cpp [--.include.wx]setup.h
  43. bombs.obj : bombs.cpp [--.include.wx]setup.h