vms.mak
changeset 1891 0dc56210cbfb
child 1897 39e6841585fc
equal deleted inserted replaced
1890:126f70e5fe6a 1891:0dc56210cbfb
       
     1 #
       
     2 # $Header: /cvs/stx/stx/libview/vms.mak,v 1.1 1997-09-04 21:23:24 cg Exp $
       
     3 #
       
     4 
       
     5 LIBNAME=libview
       
     6 #LIB_BASE=$(LIBCOMP_BASE)
       
     7 
       
     8 PACKAGE="-package=(stx:$(LIBNAME))"
       
     9 STCLOCALOPT=-warnNonStandard -warnGlobalAssign +optinline
       
    10 
       
    11 OBJS= \
       
    12 	GraphicsDevice.$(O)     \
       
    13 	HostGraphicsDevice.$(O) \
       
    14 	DevWorkst.$(O)          \
       
    15 	  Image.$(O)            \
       
    16 	    Depth1Image.$(O)    \
       
    17 	    Depth2Image.$(O)    \
       
    18 	    Depth4Image.$(O)    \
       
    19 	    Depth8Image.$(O)    \
       
    20 	    Depth24Image.$(O)   \
       
    21 	  ImageRdr.$(O)		\
       
    22 	Workstat.$(O)           \
       
    23 	Color.$(O)              \
       
    24 	Colormap.$(O)           \
       
    25 	FontDescr.$(O)          \
       
    26 	  Font.$(O)             \
       
    27 	Cursor.$(O)             \
       
    28 	DevHandle.$(O)          \
       
    29 	  DevViewH.$(O)         \
       
    30 	  DevFormH.$(O)         \
       
    31 	DevColorH.$(O)          \
       
    32 	GC.$(O)                 \
       
    33 	  DevGC.$(O)            \
       
    34 	  GMedium.$(O)          \
       
    35 	    Form.$(O)           \
       
    36 	      DSurface.$(O)     \
       
    37 		SimpleView.$(O) \
       
    38 		View.$(O)       \
       
    39 		TopView.$(O)    \
       
    40 		  StdSysV.$(O)  \
       
    41 		    ModalBox.$(O)\
       
    42 		  PopUpView.$(O)\
       
    43 		ShadowV.$(O)    \
       
    44 		DRootView.$(O)  \
       
    45 	    Controll.$(O)       \
       
    46 	    WTrans.$(O)         \
       
    47 	    WEvent.$(O)         \
       
    48 	    WGroup.$(O)         \
       
    49 	    WSensor.$(O)        \
       
    50 	      SWSensor.$(O)     \
       
    51 	    KeybdFwd.$(O)       \
       
    52 	    KeybdMap.$(O)       \
       
    53 	    RsrcPack.$(O)       \
       
    54 	      ViewStyle.$(O)    \
       
    55 	    Depth16Image.$(O)   \
       
    56 	    Depth32Image.$(O)   \
       
    57 	    ImageMask.$(O)      \
       
    58 	    AlphaMask.$(O)			
       
    59 
       
    60 reallyAll:	all
       
    61 
       
    62 objs:	$(OBJS) XWorkstat.$(O)
       
    63 
       
    64 theLib: $(LIBNAME).olb
       
    65 	$(MAKE) objs
       
    66 	$(MAKE) vmslibinit
       
    67 	write sys$output "classlibrary $(LIBNAME).olb made."
       
    68 
       
    69 theProgram:
       
    70 	write sys$output "no program to be made here."
       
    71 
       
    72 $(LIBNAME).olb:
       
    73 	write sys$output "creating initial $(LIBNAME).olb ..."
       
    74 	lib/cre $(LIBNAME).olb
       
    75