descrip.mms 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #*****************************************************************************
  2. # *
  3. # Make file for VMS *
  4. # Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
  5. # Date : 19 January 2009 *
  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) image.exe
  27. .else
  28. .ifdef __WXGTK__
  29. $(MMS)$(MMSQUALIFIERS) image_gtk.exe
  30. .endif
  31. .endif
  32. .ifdef __WXMOTIF__
  33. image.exe : image.obj,canvas.obj
  34. cxxlink image,canvas,[--.lib]vms/opt
  35. .else
  36. .ifdef __WXGTK__
  37. image_gtk.exe : image.obj,canvas.obj
  38. cxxlink/exec=image_gtk.exe image,canvas,[--.lib]vms_gtk/opt
  39. .endif
  40. .endif
  41. image.obj : image.cpp
  42. canvas.obj : canvas.cpp