comparison src/Make_vms.mms @ 819:23f82b5d2814 v7.0c10

updated for version 7.0c10
author vimboss
date Wed, 05 Apr 2006 20:41:53 +0000
parents d8f905020502
children 1cdd2661f34c
comparison
equal deleted inserted replaced
818:1f929f3ca806 819:23f82b5d2814
1 # 1 #
2 # Makefile for Vim on OpenVMS 2 # Makefile for Vim on OpenVMS
3 # 3 #
4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com> 4 # Maintainer: Zoltan Arpadffy <arpadffy@polarhome.com>
5 # Last change: 2006 Mar 24 5 # Last change: 2006 Mar 31
6 # 6 #
7 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64 7 # This has script been tested on VMS 6.2 to 8.2 on DEC Alpha, VAX and IA64
8 # with MMS and MMK 8 # with MMS and MMK
9 # 9 #
10 # The following could be built: 10 # The following could be built:
96 96
97 # Compiler setup 97 # Compiler setup
98 98
99 .IFDEF VAX 99 .IFDEF VAX
100 .IFDEF DECC # VAX with DECC 100 .IFDEF DECC # VAX with DECC
101 CC_DEF = cc/decc 101 CC_DEF = cc # /decc # some system requires this switch
102 # but when it is not required /ver might fail
102 PREFIX = /prefix=all 103 PREFIX = /prefix=all
103 .ELSE # VAX with VAXC 104 .ELSE # VAX with VAXC
104 CC_DEF = cc 105 CC_DEF = cc
105 PREFIX = 106 PREFIX =
106 CCVER = 107 CCVER =
146 147
147 .IFDEF GUI 148 .IFDEF GUI
148 # X/Motif/GTK executable (also works in terminal mode ) 149 # X/Motif/GTK executable (also works in terminal mode )
149 150
150 .IFDEF GTK 151 .IFDEF GTK
151 # define GTK root directory 152 # NOTE: you need to set up your GTK_DIR (GTK root directory), because it is
153 # unique on every system - logicals are not accepted
152 # please note: directory should end with . in order to /trans=conc work 154 # please note: directory should end with . in order to /trans=conc work
153 # example: GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.] 155 # Example: GTK_DIR = $1$DGA104:[USERS.ZAY.WORK.GTK1210.]
154 GTK_DIR = ALPHA$DKA0:[GTK128.] 156 GTK_DIR = DKA0:[GTK1210.]
155 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK" 157 DEFS = "HAVE_CONFIG_H","FEAT_GUI_GTK"
156 LIBS = ,OS_VMS_GTK.OPT/OPT 158 LIBS = ,OS_VMS_GTK.OPT/OPT
157 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm 159 GUI_FLAG = /name=(as_is,short)/float=ieee/ieee=denorm
158 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c 160 GUI_SRC = gui.c gui_gtk.c gui_gtk_f.c gui_gtk_x11.c gui_beval.c pty.c
159 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj 161 GUI_OBJ = gui.obj gui_gtk.obj gui_gtk_f.obj gui_gtk_x11.obj gui_beval.obj pty.obj