diff options
Diffstat (limited to 'vms')
-rw-r--r-- | vms/descrip_mms.template | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template index 43a09c4954..ec14738d77 100644 --- a/vms/descrip_mms.template +++ b/vms/descrip_mms.template @@ -33,6 +33,11 @@ ~FLAGS~ #: >>>>> Architecture-specific options <<<<< +.ifdef IXE +O = .ibj +OLB = .ilb +E = .ixe +.else .ifdef AXE # File type to use for object files O = .abj @@ -48,7 +53,12 @@ OLB = .olb # File type to use for executable images E = .exe .endif +.endif +.ifdef __IA64__ +ARCH = VMS_IA64 +OBJVAL = $(O) +.else .ifdef __AXP__ ARCH = VMS_AXP OBJVAL = $(O) @@ -56,6 +66,7 @@ OBJVAL = $(O) ARCH = VMS_VAX OBJVAL = $(MMS$TARGET_NAME)$(O) .endif +.endif PERL_VERSION = ~PV~ |