blob: e6ca2e0f366e1d2fad41910e7872edd126a73378 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001# A-A-P recipe for building Vim
2#
3# There are no user choices in here!
4# Put configure arguments in the file config.arg.
5# Later there will be a config.txt file that contains examples and
6# explanations.
7#
8# Optional arguments:
Bram Moolenaar1e015462005-09-25 22:16:38 +00009# PREFIX=dir Overrules the install directory.
10# Can be specified when installing only.
11# Example: aap install PREFIX=$HOME
Bram Moolenaar071d4272004-06-13 20:20:40 +000012#
Bram Moolenaar8ab561d2006-03-23 22:44:10 +000013@if os.name != "posix":
14 :error Sorry, this recipe only works for Unix-like systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +000015
16# Skip the configure stuff when "link.sh" is executing this recipe recursively
17# to build pathdef.c or not building something and auto/config.aap does exist.
18@if ((_no.TARGETARG != "pathdef" and has_build_target())
Bram Moolenaar1e015462005-09-25 22:16:38 +000019@ or not os.path.exists("auto/config.aap")):
Bram Moolenaar071d4272004-06-13 20:20:40 +000020
21 #
22 # A U T O C O N F
23 #
24
25 # Run autoconf when configure.in has been changed since it was last run.
26 # This is skipped when the signatures in "mysign" are up-to-date. When
27 # there is no autoconf program skip this (the signature is often the only
28 # thing that's outdated)
29 auto/configure {signfile = mysign} : configure.in
Bram Moolenaar1e015462005-09-25 22:16:38 +000030 @if not program_path("autoconf"):
31 :print Can't find autoconf, using existing configure script.
32 @else:
Bram Moolenaar071d4272004-06-13 20:20:40 +000033 # Move configure aside, autoconf would overwrite it
34 :move {exist} configure configure.save
35 :sys autoconf
Bram Moolenaar06b5db92006-02-10 23:11:56 +000036 :cat configure | :eval re.sub('\\./config.log', 'auto/config.log', stdin) | :eval re.sub('>config.log', '>auto/config.log', stdin) >! auto/configure
Bram Moolenaar071d4272004-06-13 20:20:40 +000037 :chmod 755 auto/configure
38 :move configure.save configure
39 :del {force} auto/config.cache auto/config.status
40
41 # Change the configure script to produce config.aap instead of config.mk.
42 auto/configure.aap : auto/configure
Bram Moolenaar1e015462005-09-25 22:16:38 +000043 :print Adjusting auto/configure for A-A-P.
44 :cat auto/configure | :eval re.sub("config.mk", "config.aap", stdin)
45 >! auto/configure.aap
46 :chmod 755 auto/configure.aap
Bram Moolenaar071d4272004-06-13 20:20:40 +000047
48 # The configure script uses the directory where it's located, use a link.
49 configure.aap: {buildcheck=}
Bram Moolenaar1e015462005-09-25 22:16:38 +000050 :symlink {f} auto/configure.aap configure.aap
Bram Moolenaar071d4272004-06-13 20:20:40 +000051
52 # Dependency: run configure.aap to update config.h and config.aap in the
53 # "auto" directory.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +000054 # NOTE: we can only build for one architecture, because -MM doesn't work
55 # when building for both.
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 config {virtual} auto/config.h auto/config.aap :
Bram Moolenaar1e015462005-09-25 22:16:38 +000057 auto/configure.aap configure.aap
58 config.arg config.h.in config.aap.in
Bram Moolenaardfc7aa22007-09-25 20:13:54 +000059 # Use "uname -a" to detect the architecture of the system.
60 @ok, uname = redir_system('uname -a', 0)
61 @if string.find(uname, "i386") >= 0:
62 @ arch = "i386"
63 @else:
64 @ arch = "ppc"
65 :print Building for $arch system
Bram Moolenaar4f246a92007-12-31 15:42:13 +000066 config_args = `file2string("config.arg")`
Bram Moolenaar1e015462005-09-25 22:16:38 +000067 :sys CONFIG_STATUS=auto/config.status
Bram Moolenaar4f246a92007-12-31 15:42:13 +000068 ./configure.aap $config_args
Bram Moolenaardfc7aa22007-09-25 20:13:54 +000069 --with-mac-arch=$arch
Bram Moolenaar071d4272004-06-13 20:20:40 +000070 --cache-file=auto/config.cache
71
72 # Configure arguments: create an empty "config.arg" file when its missing
73 config.arg:
Bram Moolenaar1e015462005-09-25 22:16:38 +000074 :touch {exist} config.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
76 # "auto/config.aap" contains a lot of settings, such as the name of the
77 # executable "Target".
78 # First update it, forcefully if the "reconfig" target was used.
79 @if _no.TARGETARG != "comment" and _no.TARGETARG != "make":
Bram Moolenaar1e015462005-09-25 22:16:38 +000080 @if "reconfig" in var2list(_no.TARGETARG):
81 :del {force} auto/config.cache auto/config.status
82 :update {force} auto/config.aap
83 @else:
84 :update auto/config.aap
Bram Moolenaar071d4272004-06-13 20:20:40 +000085
86# Include the recipe that autoconf generated.
87:include auto/config.aap
88
Bram Moolenaara226a6d2006-02-26 23:59:20 +000089# Unfortunately "-M" doesn't work when building for two architectures. Switch
90# back to PPC only.
91@if string.find(_no.CPPFLAGS, "-arch i386 -arch ppc") >= 0:
92 CPPFLAGS = `string.replace(_no.CPPFLAGS, "-arch i386 -arch ppc", "-arch ppc")`
93
Bram Moolenaar071d4272004-06-13 20:20:40 +000094# A "PREFIX=dir" argument overrules the value of $prefix
Bram Moolenaar8ab561d2006-03-23 22:44:10 +000095# But don't use the default "/usr/local".
96@if _no.get("PREFIX") and _no.get("PREFIX") != '/usr/local':
Bram Moolenaar071d4272004-06-13 20:20:40 +000097 prefix = $PREFIX
98
99# Don't want "~/" in prefix.
100prefix = `os.path.expanduser(prefix)`
101
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000102# For Mac.
103APPDIR = $(VIMNAME).app
104
105### Names of the programs and targets
106VIMTARGET = $VIMNAME$EXESUF
107EXTARGET = $EXNAME$LNKSUF
108VIEWTARGET = $VIEWNAME$LNKSUF
109GVIMNAME = g$VIMNAME
110GVIMTARGET = $GVIMNAME$LNKSUF
111GVIEWNAME = g$VIEWNAME
112GVIEWTARGET = $GVIEWNAME$LNKSUF
113RVIMNAME = r$VIMNAME
114RVIMTARGET = $RVIMNAME$LNKSUF
115RVIEWNAME = r$VIEWNAME
116RVIEWTARGET = $RVIEWNAME$LNKSUF
117RGVIMNAME = r$GVIMNAME
118RGVIMTARGET = $RGVIMNAME$LNKSUF
119RGVIEWNAME = r$GVIEWNAME
120RGVIEWTARGET = $RGVIEWNAME$LNKSUF
121VIMDIFFNAME = $(VIMNAME)diff
122GVIMDIFFNAME = g$VIMDIFFNAME
123VIMDIFFTARGET = $VIMDIFFNAME$LNKSUF
124GVIMDIFFTARGET = $GVIMDIFFNAME$LNKSUF
125EVIMNAME = e$VIMNAME
126EVIMTARGET = $EVIMNAME$LNKSUF
127EVIEWNAME = e$VIEWNAME
128EVIEWTARGET = $EVIEWNAME$LNKSUF
129
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130#
131# G U I variant
132#
133# The GUI is selected by configure, a lot of other things depend on it.
134#
135:variant GUI
136 GTK
Bram Moolenaar1e015462005-09-25 22:16:38 +0000137 GUI_SRC = gui.c gui_gtk.c gui_gtk_x11.c pty.c gui_beval.c
138 gui_gtk_f.c
139 GUI_OBJ =
140 GUI_DEFS = -DFEAT_GUI_GTK $NARROW_PROTO
141 GUI_IPATH = $GUI_INC_LOC
142 GUI_LIBS_DIR = $GUI_LIB_LOC
143 GUI_LIBS1 =
144 GUI_LIBS2 = $GTK_LIBNAME
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000145 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000146 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000147 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000148 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000149 GUI_BUNDLE =
150 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151 MOTIF
Bram Moolenaar1e015462005-09-25 22:16:38 +0000152 GUI_SRC = gui.c gui_motif.c gui_x11.c pty.c gui_beval.c
153 gui_xmdlg.c gui_xmebw.c
154 GUI_OBJ =
155 GUI_DEFS = -DFEAT_GUI_MOTIF $NARROW_PROTO
156 GUI_IPATH = $GUI_INC_LOC
157 GUI_LIBS_DIR = $GUI_LIB_LOC
158 GUI_LIBS1 =
159 GUI_LIBS2 = $MOTIF_LIBNAME -lXt
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000160 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000161 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000162 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000163 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000164 GUI_BUNDLE =
165 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166 ATHENA
Bram Moolenaar1e015462005-09-25 22:16:38 +0000167 # XAW_LIB et al. can be overruled to use Xaw3d widgets
168 XAW_LIB ?= -lXaw
169 GUI_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c \
170 gui_at_sb.c gui_at_fs.c
171 GUI_OBJ =
172 GUI_DEFS = -DFEAT_GUI_ATHENA $NARROW_PROTO
173 GUI_IPATH = $GUI_INC_LOC
174 GUI_LIBS_DIR = $GUI_LIB_LOC
175 GUI_LIBS1 = $XAW_LIB
176 GUI_LIBS2 = -lXt
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000177 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000178 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000179 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000180 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000181 GUI_BUNDLE =
182 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183 NEXTAW
Bram Moolenaar1e015462005-09-25 22:16:38 +0000184 # XAW_LIB et al. can be overruled to use Xaw3d widgets
185 XAW_LIB ?= -lXaw
186 GUI_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c
187 gui_at_fs.c
188 GUI_OBJ =
189 GUI_DEFS = -DFEAT_GUI_ATHENA -DFEAT_GUI_NEXTAW $NARROW_PROTO
190 GUI_IPATH = $GUI_INC_LOC
191 GUI_LIBS_DIR = $GUI_LIB_LOC
192 GUI_LIBS1 = $NEXTAW_LIB
193 GUI_LIBS2 = -lXt
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000194 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000195 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000196 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000197 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000198 GUI_BUNDLE =
199 GUI_TESTARG =
200 CARBONGUI
201 GUI_SRC = gui.c gui_mac.c pty.c
202 GUI_OBJ =
203 GUI_DEFS = -DFEAT_GUI_MAC -fno-common -fpascal-strings \
204 -Wall -Wno-unknown-pragmas -mdynamic-no-pic -pipe
205 GUI_IPATH = $GUI_INC_LOC
206 GUI_LIBS_DIR = $GUI_LIB_LOC
207 GUI_LIBS1 = -framework Carbon
208 GUI_LIBS2 =
209 GUI_INSTALL = install_macosx
210 GUI_TARGETS = installglinks
211 GUI_MAN_TARGETS = yes
212 GUI_TESTTARGET = gui
213 GUI_BUNDLE = gui_bundle
214 GUI_TESTARG = VIMPROG=../$(APPDIR)/Contents/MacOS/$(VIMTARGET)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215 PHOTONGUI
Bram Moolenaar1e015462005-09-25 22:16:38 +0000216 GUI_SRC = gui.c gui_photon.c pty.c
217 GUI_OBJ =
218 GUI_DEFS = -DFEAT_GUI_PHOTON
219 GUI_IPATH =
220 GUI_LIBS_DIR =
221 GUI_LIBS1 = -lph -lphexlib
222 GUI_LIBS2 =
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000223 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000224 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000225 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000226 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000227 GUI_BUNDLE =
228 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 *
Bram Moolenaar1e015462005-09-25 22:16:38 +0000230 GUI_SRC =
231 GUI_OBJ =
232 GUI_DEFS =
233 GUI_IPATH =
234 GUI_LIBS_DIR =
235 GUI_LIBS1 =
236 GUI_LIBS2 =
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000237 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000238 GUI_TARGETS =
239 GUI_MAN_TARGETS =
240 GUI_TESTTARGET =
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000241 GUI_BUNDLE =
242 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243
244
245PRE_DEFS = -Iproto -I. $DEFS $GUI_DEFS $GUI_IPATH $CPPFLAGS $?(EXTRA_IPATHS)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000246POST_DEFS = $X_CFLAGS $MZSCHEME_CFLAGS $PERL_CFLAGS $PYTHON_CFLAGS $TCL_CFLAGS $RUBY_CFLAGS $?(EXTRA_DEFS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247CFLAGS = $PRE_DEFS $CONF_CFLAGS $?(PROFILE_CFLAGS) $POST_DEFS
248CPPFLAGS =
249
250ALL_LIB_DIRS = $GUI_LIBS_DIR $X_LIBS_DIR
251LDFLAGS = $ALL_LIB_DIRS $CONF_LDFLAGS
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000252LIBS = $GUI_LIBS1 $GUI_X_LIBS $GUI_LIBS2 $X_PRE_LIBS $X_LIBS $X_EXTRA_LIBS $CONF_LIBS $?(EXTRA_LIBS) $MZSCHEME_LIBS $PERL_LIBS $PYTHON_LIBS $TCL_LIBS $RUBY_LIBS $?(PROFILE_LIBS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
254Target = $VIMNAME
255
256# reconfig target also builds Vim (reconfiguration is handled above).
257reconfig {virtual}: $Target
258
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000259distclean: clean
260 :del {force} auto/config.h auto/config.aap
261 :del {force} auto/config.cache auto/config.status
262
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263
264# Execute the test scripts. Run these after compiling Vim, before installing.
265#
266# This will produce a lot of garbage on your screen, including a few error
267# messages. Don't worry about that.
268# If there is a real error, there will be a difference between "test.out" and
269# a "test99.ok" file.
Bram Moolenaarfff2bee2010-05-15 13:56:02 +0200270# If everything is alright, the final message will be "ALL DONE". If not you
271# get "TEST FAILURE".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272#
273test check:
274 VimProg = ../$Target
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000275 :execute testdir/main.aap $GUI_TESTTARGET $GUI_TESTARG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276
277testclean {virtual}:
278 :del {force} testdir/*.out testdir/test.log
279
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280# When no fetch target exists we are not a child of the ../main.aap recipe,
281# Use ../main.aap to do the fetching.
282# --- If you get an error here for wrong number of arguments, you need to
283# update to a newer version of A-A-P.
284@if not has_target("fetch"):
285 fetch:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000286 :execute ../main.aap fetch
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287
288
289# All the source files that need to be compiled.
290# Some are optional and depend on configure.
291# "version.c" is missing, it's always compiled (see below).
292Source =
Bram Moolenaar218116c2010-05-20 21:46:00 +0200293 blowfish.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000294 buffer.c
295 charset.c
296 diff.c
297 digraph.c
298 edit.c
299 eval.c
300 ex_cmds.c
301 ex_cmds2.c
302 ex_docmd.c
303 ex_eval.c
304 ex_getln.c
305 fileio.c
306 fold.c
307 getchar.c
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000308 hardcopy.c
Bram Moolenaar607a95ed2006-03-28 20:57:42 +0000309 hashtab.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000310 if_cscope.c
311 if_xcmdsrv.c
312 main.c
313 mark.c
314 memfile.c
315 memline.c
316 menu.c
317 message.c
318 misc1.c
319 misc2.c
320 move.c
321 mbyte.c
322 normal.c
323 ops.c
324 option.c
325 os_unix.c
326 auto/pathdef.c
Bram Moolenaar607a95ed2006-03-28 20:57:42 +0000327 popupmnu.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000328 quickfix.c
329 regexp.c
330 screen.c
331 search.c
Bram Moolenaar218116c2010-05-20 21:46:00 +0200332 sha256.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000333 spell.c
334 syntax.c
335 tag.c
336 term.c
337 ui.c
338 undo.c
339 window.c
340 $OS_EXTRA_SRC
341 $GUI_SRC
342 $HANGULIN_SRC
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000343 $MZSCHEME_SRC
Bram Moolenaar1e015462005-09-25 22:16:38 +0000344 $PERL_SRC
345 $NETBEANS_SRC
346 $PYTHON_SRC
347 $TCL_SRC
348 $RUBY_SRC
349 $SNIFF_SRC
350 $WORKSHOP_SRC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000352Objects =
Bram Moolenaar1e015462005-09-25 22:16:38 +0000353 $GUI_OBJ
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000354
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355# TODO: make is still used for subdirectories, need to write a recipe.
356MAKE ?= make
357
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000358all: $Target $GUI_BUNDLE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359
360# This dependency is required to build auto/osdef.h before automatic
361# dependencies are generated.
362$Source version.c : auto/osdef.h
363
364# Need to mention that the target also depends on version.c, since it's not
Bram Moolenaarf711faf2007-05-10 16:48:19 +0000365# included in $Source
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366$Target : version.c
367
368# Some sources are to be found in the "auto" directory.
369SRCPATH += auto
370
371# When building Vim always compile version.c to get the timestamp.
372:filetype
373 declare my_prog
374:attr {filetype = my_prog} $Target
375
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000376:program $Target : $Source $Objects
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377
378:action build my_prog object
Bram Moolenaar1e015462005-09-25 22:16:38 +0000379 version_obj = `src2obj("version.c")`
380 :do compile {target = $version_obj} version.c
381 #:do build {target = $target {filetype = program}} $source $version_obj
382 link_sed = $BDIR/link.sed
383 @if os.path.exists(link_sed):
384 :move {force} $link_sed auto/link.sed
385 @else:
386 :del {force} auto/link.sed
387 :update link2.sh
388 :sys LINK="$?(PURIFY) $?(SHRPENV) $CC $LDFLAGS \
389 -o $target $source $version_obj $LIBS" \
390 MAKE="aap" sh ./link2.sh
391 :copy {force} auto/link.sed $BDIR/link.sed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392
393# "link.sh" must be modified for A-A-P
394link2.sh : link.sh
395 :print Adjusting $-source for A-A-P.
396 :cat $source | :eval re.sub("objects/pathdef.o", "pathdef", stdin)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000397 >! $target
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398
399xxd/xxd$EXESUF: xxd/xxd.c
400 :sys cd xxd; CC="$CC" CFLAGS="$CPPFLAGS $CFLAGS" \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000401 $MAKE -f Makefile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000402
403# Build the language specific files if they were unpacked.
404# Generate the converted .mo files separately, it's no problem if this fails.
405languages {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000406 @if _no.MAKEMO:
407 :sys cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix
408 @try:
409 :sys cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix converted
410 @except:
411 :print Generated converted language files failed, continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
413# Update the *.po files for changes in the sources. Only run manually.
414update-po {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000415 cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix update-po
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416
417auto/if_perl.c: if_perl.xs
Bram Moolenaar1e015462005-09-25 22:16:38 +0000418 :sys $PERL -e 'unless ( $$] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$$_ $$_\n" }}' > $target
419 :sys $PERL $PERLLIB/ExtUtils/xsubpp -prototypes -typemap \
420 $PERLLIB/ExtUtils/typemap if_perl.xs >> $target
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421
422auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
Bram Moolenaar1e015462005-09-25 22:16:38 +0000423 :sys CC="$CC $CFLAGS" srcdir=$srcdir sh $srcdir/osdef.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424
425pathdef {virtual} : $BDIR/auto/pathdef$OBJSUF
426
427auto/pathdef.c: auto/config.aap
Bram Moolenaar1e015462005-09-25 22:16:38 +0000428 :print Creating $target
429 :print >! $target /* pathdef.c */
430 :print >> $target /* This file is automatically created by main.aap */
431 :print >> $target /* DO NOT EDIT! Change main.aap only. */
432 :print >> $target $#include "vim.h"
433 :print >> $target char_u *default_vim_dir = (char_u *)"$VIMRCLOC";
434 :print >> $target char_u *default_vimruntime_dir = (char_u *)"$?VIMRUNTIMEDIR";
435 v = $CC -c -I$srcdir $CFLAGS
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000436 @v = string.replace(v, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000437 :print >> $target char_u *all_cflags = (char_u *)"$v";
438 linkcmd = $CC $LDFLAGS -o $VIMTARGET $LIBS
439 link_sed = $BDIR/link.sed
440 @if os.path.exists(link_sed):
441 # filter $linkcmd through $BDIR/link.sed
442 :print $linkcmd | :syseval sed -f $link_sed | :eval re.sub("\n", "", stdin) | :assign linkcmd
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000443 @linkcmd = string.replace(linkcmd, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000444 :print >> $target char_u *all_lflags = (char_u *)"$linkcmd";
445 @if _no.get("COMPILEDBY"):
446 who = $COMPILEDBY
Bram Moolenaar4f246a92007-12-31 15:42:13 +0000447 where =
Bram Moolenaar1e015462005-09-25 22:16:38 +0000448 @else:
449 :syseval whoami | :eval re.sub("\n", "", stdin) | :assign who
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450
Bram Moolenaar1e015462005-09-25 22:16:38 +0000451 :syseval hostname | :eval re.sub("\n", "", stdin) | :assign where
Bram Moolenaar4f246a92007-12-31 15:42:13 +0000452 @who = string.replace(who, '"', '\\"')
453 @where = string.replace(where, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000454 :print >> $target char_u *compiled_user = (char_u *)"$who";
455 :print >> $target char_u *compiled_sys = (char_u *)"$where";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456
457
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458### Names of the tools that are also made
459TOOLS = xxd/xxd$EXESUF
460
461# Root of the installation tree. Empty for a normal install, set to an
462# existing path to install into a special place (for generating a package).
463DESTDIR ?=
464
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000465### Location of man pages under $MANTOPDIR
466MAN1DIR = /man1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467
468### Location of Vim files (should not need to be changed, and
469### some things might not work when they are changed!)
470VIMDIR = /vim
471@r = re.compile('.*VIM_VERSION_NODOT\\s*"(vim\\d\\d[^"]*)".*', re.S)
472VIMRTDIR = /`r.match(open("version.h").read()).group(1)`
473HELPSUBDIR = /doc
474COLSUBDIR = /colors
475SYNSUBDIR = /syntax
476INDSUBDIR = /indent
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000477AUTOSUBDIR = /autoload
Bram Moolenaar071d4272004-06-13 20:20:40 +0000478PLUGSUBDIR = /plugin
479FTPLUGSUBDIR = /ftplugin
480LANGSUBDIR = /lang
481COMPSUBDIR = /compiler
482KMAPSUBDIR = /keymap
483MACROSUBDIR = /macros
484TOOLSSUBDIR = /tools
485TUTORSUBDIR = /tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000486SPELLSUBDIR = /spell
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487PRINTSUBDIR = /print
488PODIR = po
489
Bram Moolenaar1e015462005-09-25 22:16:38 +0000490### VIMLOC common root of the Vim files (all versions)
491### VIMRTLOC common root of the runtime Vim files (this version)
492### VIMRCLOC compiled-in location for global [g]vimrc files (all versions)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000493### VIMRUNTIMEDIR compiled-in location for runtime files (optional)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000494### HELPSUBLOC location for help files
495### COLSUBLOC location for colorscheme files
496### SYNSUBLOC location for syntax files
497### INDSUBLOC location for indent files
498### AUTOSUBLOC location for standard autoload files
499### PLUGSUBLOC location for standard plugin files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500### FTPLUGSUBLOC location for ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000501### LANGSUBLOC location for language files
502### COMPSUBLOC location for compiler files
503### KMAPSUBLOC location for keymap files
504### MACROSUBLOC location for macro files
505### TOOLSSUBLOC location for tools files
506### TUTORSUBLOC location for tutor files
507### PRINTSUBLOC location for print files
508### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509### You can override these if you want to install them somewhere else.
510### Edit feature.h for compile-time settings.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000511VIMLOC = $DATADIR$VIMDIR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000512@if not _no.get("VIMRTLOC"):
513 VIMRTLOC = $DATADIR$VIMDIR$VIMRTDIR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000514VIMRCLOC = $VIMLOC
515HELPSUBLOC = $VIMRTLOC$HELPSUBDIR
516COLSUBLOC = $VIMRTLOC$COLSUBDIR
517SYNSUBLOC = $VIMRTLOC$SYNSUBDIR
518INDSUBLOC = $VIMRTLOC$INDSUBDIR
519AUTOSUBLOC = $VIMRTLOC$AUTOSUBDIR
520PLUGSUBLOC = $VIMRTLOC$PLUGSUBDIR
521FTPLUGSUBLOC = $VIMRTLOC$FTPLUGSUBDIR
522LANGSUBLOC = $VIMRTLOC$LANGSUBDIR
523COMPSUBLOC = $VIMRTLOC$COMPSUBDIR
524KMAPSUBLOC = $VIMRTLOC$KMAPSUBDIR
525MACROSUBLOC = $VIMRTLOC$MACROSUBDIR
526TOOLSSUBLOC = $VIMRTLOC$TOOLSSUBDIR
527TUTORSUBLOC = $VIMRTLOC$TUTORSUBDIR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000528SPELLSUBLOC = $VIMRTLOC$SPELLSUBDIR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000529PRINTSUBLOC = $VIMRTLOC$PRINTSUBDIR
530SCRIPTLOC = $VIMRTLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
532### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and
533### the runtime directory is not below it.
534#VIMRUNTIMEDIR = $VIMRTLOC
535
536### Name of the evim file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000537EVIM_FILE = $DESTDIR$SCRIPTLOC/evim.vim
538MSWIN_FILE = $DESTDIR$SCRIPTLOC/mswin.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539
540### Name of the menu file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000541SYS_MENU_FILE = $DESTDIR$SCRIPTLOC/menu.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542SYS_SYNMENU_FILE = $DESTDIR$SCRIPTLOC/synmenu.vim
543SYS_DELMENU_FILE = $DESTDIR$SCRIPTLOC/delmenu.vim
544
545### Name of the bugreport file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000546SYS_BUGR_FILE = $DESTDIR$SCRIPTLOC/bugreport.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000547
548### Name of the file type detection file target.
549SYS_FILETYPE_FILE = $DESTDIR$SCRIPTLOC/filetype.vim
550
551### Name of the file type detection file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000552SYS_FTOFF_FILE = $DESTDIR$SCRIPTLOC/ftoff.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
554### Name of the file type detection script file target.
555SYS_SCRIPTS_FILE = $DESTDIR$SCRIPTLOC/scripts.vim
556
557### Name of the ftplugin-on file target.
558SYS_FTPLUGIN_FILE = $DESTDIR$SCRIPTLOC/ftplugin.vim
559
560### Name of the ftplugin-off file target.
561SYS_FTPLUGOF_FILE = $DESTDIR$SCRIPTLOC/ftplugof.vim
562
563### Name of the indent-on file target.
564SYS_INDENT_FILE = $DESTDIR$SCRIPTLOC/indent.vim
565
566### Name of the indent-off file target.
567SYS_INDOFF_FILE = $DESTDIR$SCRIPTLOC/indoff.vim
568
569### Name of the option window script file target.
570SYS_OPTWIN_FILE = $DESTDIR$SCRIPTLOC/optwin.vim
571
572### Permissions for binaries
573BINMOD = 755
574
575### Permissions for man page
576MANMOD = 644
577
578### Permissions for help files
579HELPMOD = 644
580
581### Permissions for Perl and shell scripts
582SCRIPTMOD = 755
583
584### Permission for Vim script files (menu.vim, bugreport.vim, ..)
585VIMSCRIPTMOD = 644
586
587### Permissions for all directories that are created
588DIRMOD = 755
589
590### Permissions for all other files that are created
591FILEMOD = 644
592
593# Where to copy the man and help files from
594HELPSOURCE = ../runtime/doc
595
596# Where to copy the script files from (menu, bugreport)
597SCRIPTSOURCE = ../runtime
598
599# Where to copy the colorscheme files from
600COLSOURCE = ../runtime/colors
601
602# Where to copy the syntax files from
603SYNSOURCE = ../runtime/syntax
604
605# Where to copy the indent files from
606INDSOURCE = ../runtime/indent
607
608# Where to copy the standard plugin files from
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000609AUTOSOURCE = ../runtime/autoload
610
611# Where to copy the standard plugin files from
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612PLUGSOURCE = ../runtime/plugin
613
614# Where to copy the ftplugin files from
615FTPLUGSOURCE = ../runtime/ftplugin
616
617# Where to copy the macro files from
618MACROSOURCE = ../runtime/macros
619
620# Where to copy the tools files from
621TOOLSSOURCE = ../runtime/tools
622
623# Where to copy the tutor files from
624TUTORSOURCE = ../runtime/tutor
625
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000626# Where to copy the spell files from
627SPELLSOURCE = ../runtime/spell
628
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629# Where to look for language specific files
630LANGSOURCE = ../runtime/lang
631
632# Where to look for compiler files
633COMPSOURCE = ../runtime/compiler
634
635# Where to look for keymap files
636KMAPSOURCE = ../runtime/keymap
637
638# Where to look for print resource files
639PRINTSOURCE = ../runtime/print
640
641# abbreviations
642DEST_BIN = $DESTDIR$BINDIR
643DEST_VIM = $DESTDIR$VIMLOC
644DEST_RT = $DESTDIR$VIMRTLOC
645DEST_HELP = $DESTDIR$HELPSUBLOC
646DEST_COL = $DESTDIR$COLSUBLOC
647DEST_SYN = $DESTDIR$SYNSUBLOC
648DEST_IND = $DESTDIR$INDSUBLOC
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000649DEST_AUTO = $DESTDIR$AUTOSUBLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650DEST_PLUG = $DESTDIR$PLUGSUBLOC
651DEST_FTP = $DESTDIR$FTPLUGSUBLOC
652DEST_LANG = $DESTDIR$LANGSUBLOC
653DEST_COMP = $DESTDIR$COMPSUBLOC
654DEST_KMAP = $DESTDIR$KMAPSUBLOC
655DEST_MACRO = $DESTDIR$MACROSUBLOC
656DEST_TOOLS = $DESTDIR$TOOLSSUBLOC
657DEST_TUTOR = $DESTDIR$TUTORSUBLOC
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000658DEST_SPELL = $DESTDIR$SPELLSUBLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659DEST_SCRIPT = $DESTDIR$SCRIPTLOC
660DEST_PRINT = $DESTDIR$PRINTSUBLOC
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000661DEST_MAN_TOP = $DESTDIR$?(MANDIR)
662
663# We assume that the ".../man/xx/man1/" directory is for latin1 manual pages.
664# Some systems use UTF-8, but these should find the ".../man/xx.UTF-8/man1/"
665# directory first.
666# FreeBSD uses ".../man/xx.ISO8859-1/man1" for latin1, use that one too.
667DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR)
668DEST_MAN_FR = $(DEST_MAN_TOP)/fr$(MAN1DIR)
669DEST_MAN_FR_I = $(DEST_MAN_TOP)/fr.ISO8859-1$(MAN1DIR)
670DEST_MAN_FR_U = $(DEST_MAN_TOP)/fr.UTF-8$(MAN1DIR)
671DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR)
672DEST_MAN_IT_I = $(DEST_MAN_TOP)/it.ISO8859-1$(MAN1DIR)
673DEST_MAN_IT_U = $(DEST_MAN_TOP)/it.UTF-8$(MAN1DIR)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000674DEST_MAN_PL = $(DEST_MAN_TOP)/pl.ISO8859-2$(MAN1DIR)
675DEST_MAN_PL_U = $(DEST_MAN_TOP)/pl.UTF-8$(MAN1DIR)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000676DEST_MAN_RU = $(DEST_MAN_TOP)/ru.KOI8-R$(MAN1DIR)
677DEST_MAN_RU_U = $(DEST_MAN_TOP)/ru.UTF-8$(MAN1DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678
679# These are directories, create them when needed.
680:attr {directory = $DIRMOD} $DEST_BIN $DEST_VIM $DEST_RT $DEST_HELP $DEST_COL
Bram Moolenaar18144c82006-04-12 21:52:12 +0000681 $DEST_SYN $DEST_IND $DEST_AUTO $DEST_AUTO/xml $DEST_PLUG
682 $DEST_FTP $DEST_LANG
Bram Moolenaar1e015462005-09-25 22:16:38 +0000683 $DEST_COMP $DEST_KMAP $DEST_MACRO $DEST_TOOLS $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000684 $DEST_SCRIPT $DEST_PRINT $DEST_MAN $DEST_SPELL
685 $DEST_MAN_FR $DEST_MAN_FR_I $DEST_MAN_FR_U $DEST_MAN_IT
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000686 $DEST_MAN_IT_I $DEST_MAN_IT_U
687 $DEST_MAN_PL $DEST_MAN_PL_U
688 $DEST_MAN_RU $DEST_MAN_RU_U
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689
690#
691# I N S T A L L
692#
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000693install: $GUI_INSTALL
694
695install_normal:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 @if not os.path.isdir(_no.DEST_BIN):
697 @try:
698 :mkdir $DEST_BIN
699 @except:
700 @ pass
701 @if os.access(_no.DEST_BIN, os.W_OK):
702 # Bin directory is writable, install directly.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000703 :update installvim installtools $INSTALL_LANGS install-icons
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704 @else:
705 # Bin directory is not writable, need to become root.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000706 :print The destination directory "$DEST_BIN" is not writable.
707 :print If this is the wrong directory, use PREFIX to specify another one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 :print Otherwise, type the root password to continue installing.
709 :asroot $AAP install
710
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000711installvim {virtual}: installvimbin installtutorbin \
712 installruntime installlinks installmanlinks
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713
714installvimbin {virtual}{force}: $Target $DEST_BIN
Bram Moolenaar1e015462005-09-25 22:16:38 +0000715 exe = $DEST_BIN/$VIMTARGET
716 @if os.path.exists(exe):
717 # Move the old executable aside and delete it. Any other method
718 # may cause a crash if the executable is currently being used.
719 :move {force} $exe $(exe).rm
720 :del {force} $(exe).rm
721 :copy $VIMTARGET $DEST_BIN
722 :do strip $exe
723 :chmod $BINMOD $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724# may create a link to the new executable from /usr/bin/vi
Bram Moolenaar1e015462005-09-25 22:16:38 +0000725 @if _no.get("LINKIT"):
726 :sys $LINKIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000727
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000728# Long list of arguments for the shell script that installs the manual pages
729# for one language.
730INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \
731 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME)
732
733# Install most of the runtime files
734installruntime {virtual}: installrtbase installmacros installtutor installspell
735
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736# install the help files; first adjust the contents for the location
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000737installrtbase {virtual}{force}: $HELPSOURCE/vim.1 $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000738 $DEST_RT $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
Bram Moolenaar18144c82006-04-12 21:52:12 +0000739 $DEST_FTP $DEST_AUTO $DEST_AUTO/xml $DEST_PLUG $DEST_TUTOR
740 $DEST_COMP $DEST_SPELL $DEST_PRINT
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000741 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000742 :sys ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743
744 :cd $HELPSOURCE
745 @try:
746 XTRA = `glob.glob("*.??x")` `glob.glob("tags-??")`
747 @except:
748 XTRA = # It's OK if there are no matches.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000749 :copy *.txt tags $XTRA $DEST_HELP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 :cd -
751 :cd $DEST_HELP
Bram Moolenaar1e015462005-09-25 22:16:38 +0000752 :chmod $HELPMOD *.txt tags $XTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753 :cd -
Bram Moolenaar1e015462005-09-25 22:16:38 +0000754 :copy $HELPSOURCE/*.pl $DEST_HELP
755 :chmod $SCRIPTMOD $DEST_HELP/*.pl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756# install the menu files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000757 :copy $SCRIPTSOURCE/menu.vim $SYS_MENU_FILE
758 :chmod $VIMSCRIPTMOD $SYS_MENU_FILE
759 :copy $SCRIPTSOURCE/synmenu.vim $SYS_SYNMENU_FILE
760 :chmod $VIMSCRIPTMOD $SYS_SYNMENU_FILE
761 :copy $SCRIPTSOURCE/delmenu.vim $SYS_DELMENU_FILE
762 :chmod $VIMSCRIPTMOD $SYS_DELMENU_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763# install the evim file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000764 :copy $SCRIPTSOURCE/mswin.vim $MSWIN_FILE
765 :chmod $VIMSCRIPTMOD $MSWIN_FILE
766 :copy $SCRIPTSOURCE/evim.vim $EVIM_FILE
767 :chmod $VIMSCRIPTMOD $EVIM_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768# install the bugreport file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000769 :copy $SCRIPTSOURCE/bugreport.vim $SYS_BUGR_FILE
770 :chmod $VIMSCRIPTMOD $SYS_BUGR_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771# install the example vimrc files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000772 :copy $SCRIPTSOURCE/vimrc_example.vim $DEST_SCRIPT
773 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/vimrc_example.vim
774 :copy $SCRIPTSOURCE/gvimrc_example.vim $DEST_SCRIPT
775 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/gvimrc_example.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776# install the file type detection files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000777 :copy $SCRIPTSOURCE/filetype.vim $SYS_FILETYPE_FILE
778 :chmod $VIMSCRIPTMOD $SYS_FILETYPE_FILE
779 :copy $SCRIPTSOURCE/ftoff.vim $SYS_FTOFF_FILE
780 :chmod $VIMSCRIPTMOD $SYS_FTOFF_FILE
781 :copy $SCRIPTSOURCE/scripts.vim $SYS_SCRIPTS_FILE
782 :chmod $VIMSCRIPTMOD $SYS_SCRIPTS_FILE
783 :copy $SCRIPTSOURCE/ftplugin.vim $SYS_FTPLUGIN_FILE
784 :chmod $VIMSCRIPTMOD $SYS_FTPLUGIN_FILE
785 :copy $SCRIPTSOURCE/ftplugof.vim $SYS_FTPLUGOF_FILE
786 :chmod $VIMSCRIPTMOD $SYS_FTPLUGOF_FILE
787 :copy $SCRIPTSOURCE/indent.vim $SYS_INDENT_FILE
788 :chmod $VIMSCRIPTMOD $SYS_INDENT_FILE
789 :copy $SCRIPTSOURCE/indoff.vim $SYS_INDOFF_FILE
790 :chmod $VIMSCRIPTMOD $SYS_INDOFF_FILE
791 :copy $SCRIPTSOURCE/optwin.vim $SYS_OPTWIN_FILE
792 :chmod $VIMSCRIPTMOD $SYS_OPTWIN_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793# install the print resource files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000794 :copy $PRINTSOURCE/*.ps $DEST_PRINT
795 :chmod $FILEMOD $DEST_PRINT/*.ps
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796# install the colorscheme files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000797 :copy $COLSOURCE/*.vim $COLSOURCE/README.txt $DEST_COL
798 :chmod $HELPMOD $DEST_COL/*.vim $DEST_COL/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799# install the syntax files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000800 :copy $SYNSOURCE/*.vim $SYNSOURCE/README.txt $DEST_SYN
801 :chmod $HELPMOD $DEST_SYN/*.vim $DEST_SYN/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802# install the indent files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000803 :copy $INDSOURCE/*.vim $INDSOURCE/README.txt $DEST_IND
804 :chmod $HELPMOD $DEST_IND/*.vim
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000805# install the standard autoload files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000806 :copy $AUTOSOURCE/*.vim $AUTOSOURCE/README.txt $DEST_AUTO
807 :chmod $HELPMOD $DEST_AUTO/*.vim $DEST_AUTO/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +0000808 :copy $AUTOSOURCE/xml/*.vim $DEST_AUTO/xml
809 :chmod $HELPMOD $DEST_AUTO/xml/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810# install the standard plugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000811 :copy $PLUGSOURCE/*.vim $PLUGSOURCE/README.txt $DEST_PLUG
812 :chmod $HELPMOD $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813# install the ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000814 :copy $FTPLUGSOURCE/*.vim $FTPLUGSOURCE/README.txt $DEST_FTP
815 :chmod $HELPMOD $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816# install the compiler files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000817 :copy $COMPSOURCE/*.vim $COMPSOURCE/README.txt $DEST_COMP
818 :chmod $HELPMOD $DEST_COMP/*.vim $DEST_COMP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819
820installmacros {virtual}{force}: $MACROSOURCE $DEST_VIM $DEST_RT $DEST_MACRO
Bram Moolenaar1e015462005-09-25 22:16:38 +0000821 :copy {recursive}{force} $MACROSOURCE/* $DEST_MACRO
822 # Delete any CVS and AAPDIR directories.
823 # Use the ":tree" command if possible. It was added later, fall back
824 # to using "find" when it doesn't work.
825 @try:
826 :tree $DEST_MACRO {dirname = CVS}
827 :del {recursive} $name
828 :tree $DEST_MACRO {dirname = AAPDIR}
829 :del {recursive} $name
830 :tree $DEST_MACRO {dirname = .*}
831 :chmod $DIRMOD $name
832 :tree $DEST_MACRO {filename = .*}
833 :chmod $FILEMOD $name
834 @except:
835 @ ok, cvsdirs = redir_system('find %s -name CVS -print' % _no.DEST_MACRO)
836 @ if ok and cvsdirs:
837 :del {recursive} $cvsdirs
838 :sys chmod $DIRMOD ``find $DEST_MACRO -type d -print``
839 :sys chmod $FILEMOD ``find $DEST_MACRO -type f -print``
840 :chmod $SCRIPTMOD $DEST_MACRO/less.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841
842# install the tutor files
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000843installtutorbin {virtual}{force}: $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000844 :copy vimtutor $DEST_BIN/$(VIMNAME)tutor
845 :chmod $SCRIPTMOD $DEST_BIN/$(VIMNAME)tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000846
847installtutor {virtual}{force}: $DEST_RT $DEST_TUTOR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000848 :copy $TUTORSOURCE/tutor* $TUTORSOURCE/README* $DEST_TUTOR
849 :chmod $HELPMOD $DEST_TUTOR/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000851# Install the spell files, if they exist. This assumes at least the English
852# spell file is there.
853installspell {virtual}: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
854 enspl = $(SPELLSOURCE)/en.latin1.spl
855 @if os.path.exists(enspl):
856 :copy $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.vim $(DEST_SPELL)
857 :chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.vim
858 @try:
859 :copy $(SPELLSOURCE)/*.sug $(DEST_SPELL)
860 :chmod $(HELPMOD) $(DEST_SPELL)/*.sug
861 @except:
862 @ pass
863
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864# install helper program xxd
865installtools {virtual}{force}: $TOOLS $DEST_BIN $DEST_MAN \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000866 $TOOLSSOURCE $DEST_VIM $DEST_RT $DEST_TOOLS \
867 $INSTALL_TOOL_LANGS
Bram Moolenaar1e015462005-09-25 22:16:38 +0000868 xxd = $DEST_BIN/xxd$EXESUF
869 @if os.path.exists(xxd):
870 :move {force} $xxd $(xxd).rm
871 :del $(xxd).rm
872 :copy xxd/xxd$EXESUF $DEST_BIN
873 :do strip $DEST_BIN/xxd$EXESUF
874 :chmod $BINMOD $DEST_BIN/xxd$EXESUF
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000875 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000876 :sys ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS)
877#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878# install the runtime tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000879 @try:
880 @ if aap_has(":tree"):
881 # New method: copy everything and delete CVS and AAPDIR dirs
882 :copy {recursive} $TOOLSSOURCE/* $DEST_TOOLS
883 :tree $DEST_TOOLS {dirname = CVS}
884 :delete {recursive} $name
885 :tree $DEST_TOOLS {dirname = AAPDIR}
886 :delete {recursive} $name
887 @except:
888 # Old method: copy only specific files and directories.
889 :copy {recursive} $TOOLSSOURCE/README.txt $TOOLSSOURCE/[a-z]* $DEST_TOOLS
890 :chmod $FILEMOD $DEST_TOOLS/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891# replace the path in some tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000892 :progsearch perlpath perl
893 @if perlpath:
894 :cat $TOOLSSOURCE/efm_perl.pl |
895 :eval re.sub("/usr/bin/perl", perlpath, stdin)
896 >! $DEST_TOOLS/efm_perl.pl
897 @else:
898 :copy $TOOLSSOURCE/efm_perl.pl $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899
Bram Moolenaar1e015462005-09-25 22:16:38 +0000900 :progsearch awkpath nawk gawk awk
901 @if awkpath:
902 :cat $TOOLSSOURCE/mve.awk |
903 :eval re.sub("/usr/bin/nawk", awkpath, stdin)
904 >! $DEST_TOOLS/mve.awk
905 @else:
906 :copy $TOOLSSOURCE/mve.awk $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907
Bram Moolenaar1e015462005-09-25 22:16:38 +0000908 :sys chmod $SCRIPTMOD ``grep -l "^#!" $DEST_TOOLS/*``
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000910# install the language specific files for tools, if they were unpacked
911install-tool-languages:
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000912 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000913 :sys ./installman.sh xxd $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
914 :sys ./installman.sh xxd $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
915 :sys ./installman.sh xxd $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
916 :sys ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
917 :sys ./installman.sh xxd $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
918 :sys ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000919 :sys ./installman.sh xxd $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
920 :sys ./installman.sh xxd $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000921 :sys ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
922 :sys ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
923
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924# install the language specific files, if they were unpacked
925install-languages {virtual}{force}: languages $DEST_LANG $DEST_KMAP
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000926 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000927 :sys ./installman.sh install $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
928 :sys ./installman.sh install $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
929 :sys ./installman.sh install $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
930 :sys ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
931 :sys ./installman.sh install $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
932 :sys ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000933 :sys ./installman.sh install $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
934 :sys ./installman.sh install $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000935 :sys ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
936 :sys ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000937 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000938 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
939 $(DEST_MAN_FR) $(INSTALLMLARGS)
940 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
941 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
942 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
943 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
944 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
945 $(DEST_MAN_IT) $(INSTALLMLARGS)
946 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
947 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
948 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
949 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
950 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000951 $(DEST_MAN_PL) $(INSTALLMLARGS)
952 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
953 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
954 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000955 $(DEST_MAN_RU) $(INSTALLMLARGS)
956 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
957 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
958
Bram Moolenaar1e015462005-09-25 22:16:38 +0000959 @if _no.MAKEMO:
960 :sys cd $PODIR; $MAKE prefix=$DESTDIR$prefix \
961 LOCALEDIR=$DEST_LANG INSTALL_DATA=cp FILEMOD=$FILEMOD install
962 @if os.path.exists(_no.LANGSOURCE):
963 :print installing language files
964 :copy $LANGSOURCE/README.txt $LANGSOURCE/*.vim $DEST_LANG
965 :chmod $FILEMOD $DEST_LANG/*.vim
966 @if os.path.exists(_no.KMAPSOURCE):
967 :copy $KMAPSOURCE/README.txt $KMAPSOURCE/*.vim $DEST_KMAP
968 :chmod $FILEMOD $DEST_KMAP/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000969
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970# install the icons for KDE, if the directory exists and the icon doesn't.
971ICON48PATH = $DESTDIR$DATADIR/icons/hicolor/48x48/apps
972ICON32PATH = $DESTDIR$DATADIR/icons/locolor/32x32/apps
973ICON16PATH = $DESTDIR$DATADIR/icons/locolor/16x16/apps
974KDEPATH = $HOME/.kde/share/icons
975install-icons {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000976 gp = $ICON48PATH/gvim.png
977 @if os.path.isdir(_no.ICON48PATH) and not os.path.exists(gp):
978 :copy $SCRIPTSOURCE/vim48x48.png $gp
979 gp = $ICON32PATH/gvim.png
980 @if os.path.isdir(_no.ICON32PATH) and not os.path.exists(gp):
981 :copy $SCRIPTSOURCE/vim32x32.png $gp
982 gp = $ICON16PATH/gvim.png
983 @if os.path.isdir(_no.ICON16PATH) and not os.path.exists(gp):
984 :copy $SCRIPTSOURCE/vim16x16.png $gp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
986
987$HELPSOURCE/vim.1 $MACROSOURCE $TOOLSSOURCE:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000988 @if not os.path.exists(_no.TOOLSSOURCE):
989 :print Runtime files not found.
990 :error You need to unpack the runtime archive before running "make install".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991
992# create links from various names to vim. This is only done when the links
993# (or executables with the same name) don't exist yet.
994installlinks {virtual}: $GUI_TARGETS \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000995 $DEST_BIN/$EXTARGET \
996 $DEST_BIN/$VIEWTARGET \
997 $DEST_BIN/$RVIMTARGET \
998 $DEST_BIN/$RVIEWTARGET \
999 $INSTALLVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000
1001installglinks {virtual}: $DEST_BIN/$GVIMTARGET \
Bram Moolenaar1e015462005-09-25 22:16:38 +00001002 $DEST_BIN/$GVIEWTARGET \
1003 $DEST_BIN/$RGVIMTARGET \
1004 $DEST_BIN/$RGVIEWTARGET \
1005 $DEST_BIN/$EVIMTARGET \
1006 $DEST_BIN/$EVIEWTARGET \
1007 $INSTALLGVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008
1009installvimdiff {virtual}: $DEST_BIN/$VIMDIFFTARGET
1010installgvimdiff {virtual}: $DEST_BIN/$GVIMDIFFTARGET
1011
1012# These dependencies use an empty buildcheck so that they are only done when
1013# the target doesn't exist.
1014$DEST_BIN/$EXTARGET: {buildcheck = }
1015 :sys cd $DEST_BIN; ln -s $VIMTARGET $EXTARGET
1016
1017$DEST_BIN/$VIEWTARGET: {buildcheck = }
1018 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIEWTARGET
1019
1020$DEST_BIN/$GVIMTARGET: {buildcheck = }
1021 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMTARGET
1022
1023$DEST_BIN/$GVIEWTARGET: {buildcheck = }
1024 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIEWTARGET
1025
1026$DEST_BIN/$RVIMTARGET: {buildcheck = }
1027 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIMTARGET
1028
1029$DEST_BIN/$RVIEWTARGET: {buildcheck = }
1030 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIEWTARGET
1031
1032$DEST_BIN/$RGVIMTARGET: {buildcheck = }
1033 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIMTARGET
1034
1035$DEST_BIN/$RGVIEWTARGET: {buildcheck = }
1036 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIEWTARGET
1037
1038$DEST_BIN/$VIMDIFFTARGET: {buildcheck = }
1039 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIMDIFFTARGET
1040
1041$DEST_BIN/$GVIMDIFFTARGET: {buildcheck = }
1042 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMDIFFTARGET
1043
1044$DEST_BIN/$EVIMTARGET: {buildcheck = }
1045 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIMTARGET
1046
1047$DEST_BIN/$EVIEWTARGET: {buildcheck = }
1048 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIEWTARGET
1049
Bram Moolenaar1e015462005-09-25 22:16:38 +00001050# create links for the manual pages with various names to vim. This is only
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051# done when the links (or manpages with the same name) don't exist yet.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001052INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \
1053 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \
1054 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \
1055 $(GVIMDIFFNAME) $(EVIEWNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001057installmanlinks {virtual}:
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001058 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001059 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
1060 $(DEST_MAN) $(INSTALLMLARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061
1062#
1063# U N I N S T A L L
1064#
1065uninstall {virtual}{force}: uninstall_runtime
1066 :del {force} $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 :del {force} $DEST_BIN/vimtutor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 :del {force} $DEST_BIN/$EXTARGET $DEST_BIN/$VIEWTARGET
1069 :del {force} $DEST_BIN/$GVIMTARGET $DEST_BIN/$GVIEWTARGET
1070 :del {force} $DEST_BIN/$RVIMTARGET $DEST_BIN/$RVIEWTARGET
1071 :del {force} $DEST_BIN/$RGVIMTARGET $DEST_BIN/$RGVIEWTARGET
1072 :del {force} $DEST_BIN/$VIMDIFFTARGET $DEST_BIN/$GVIMDIFFTARGET
1073 :del {force} $DEST_BIN/$EVIMTARGET $DEST_BIN/$EVIEWTARGET
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001074 :del {force} $DEST_BIN/xxd$EXESUF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075
1076# Note: "deldir" will fail if any files were added after "make install", that
1077# is intentionally: Keep files the user added.
1078uninstall_runtime {virtual}{force}:
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001079 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001080 :sys ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS)
1081 :sys ./installman.sh uninstall $(DEST_MAN_FR) "" $(INSTALLMANARGS)
1082 :sys ./installman.sh uninstall $(DEST_MAN_FR_I) "" $(INSTALLMANARGS)
1083 :sys ./installman.sh uninstall $(DEST_MAN_FR_U) "" $(INSTALLMANARGS)
1084 :sys ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS)
1085 :sys ./installman.sh uninstall $(DEST_MAN_IT_I) "" $(INSTALLMANARGS)
1086 :sys ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001087 :sys ./installman.sh uninstall $(DEST_MAN_PL) "" $(INSTALLMANARGS)
1088 :sys ./installman.sh uninstall $(DEST_MAN_PL_U) "" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001089 :sys ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS)
1090 :sys ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001091 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001092 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1093 $(DEST_MAN) $(INSTALLMLARGS)
1094 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1095 $(DEST_MAN_FR) $(INSTALLMLARGS)
1096 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1097 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
1098 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1099 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
1100 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1101 $(DEST_MAN_IT) $(INSTALLMLARGS)
1102 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1103 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
1104 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1105 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
1106 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001107 $(DEST_MAN_PL) $(INSTALLMLARGS)
1108 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1109 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
1110 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001111 $(DEST_MAN_RU) $(INSTALLMLARGS)
1112 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1113 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
1114 :del {force} $DEST_MAN/xxd.1
1115 :del {force} $(DEST_MAN_FR)/xxd.1 $(DEST_MAN_FR_I)/xxd.1 $(DEST_MAN_FR_U)/xxd.1
1116 :del {force} $(DEST_MAN_IT)/xxd.1 $(DEST_MAN_IT_I)/xxd.1 $(DEST_MAN_IT_U)/xxd.1
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001117 :del {force} $(DEST_MAN_PL)/xxd.1 $(DEST_MAN_PL_U)/xxd.1
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001118 :del {force} $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1
1119
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 :del {force} $DEST_HELP/*.txt $DEST_HELP/tags $DEST_HELP/*.pl
1121 :del {force} $SYS_MENU_FILE $SYS_SYNMENU_FILE $SYS_DELMENU_FILE
1122 :del {force} $SYS_BUGR_FILE $EVIM_FILE $MSWIN_FILE
1123 :del {force} $DEST_SCRIPT/gvimrc_example.vim $DEST_SCRIPT/vimrc_example.vim
1124 :del {force} $SYS_FILETYPE_FILE $SYS_FTOFF_FILE $SYS_SCRIPTS_FILE
1125 :del {force} $SYS_INDOFF_FILE $SYS_INDENT_FILE
1126 :del {force} $SYS_FTPLUGOF_FILE $SYS_FTPLUGIN_FILE
1127 :del {force} $SYS_OPTWIN_FILE
1128 :del {force} $DEST_COL/*.vim $DEST_COL/README.txt
1129 :del {force} $DEST_SYN/*.vim $DEST_SYN/README.txt
1130 :del {force} $DEST_IND/*.vim $DEST_IND/README.txt
1131 :del {force} $DEST_PRINT/*.ps
1132 :del {force}{recursive} $DEST_MACRO
1133 :del {force}{recursive} $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001134 :del {force}{recursive} $DEST_SPELL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 :del {force}{recursive} $DEST_TOOLS
1136 :del {force}{recursive} $DEST_LANG
1137 :del {force}{recursive} $DEST_KMAP
1138 :del {force}{recursive} $DEST_COMP
1139 :deldir {force} $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
1140 :del {force}{recursive} $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +00001141 :del {force} $DEST_AUTO/*.vim $DEST_AUTO/README.txt $DEST_AUTO/xml/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 :del {force} $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +00001143 :deldir {force} $DEST_FTP $DEST_AUTO/xml $DEST_AUTO $DEST_PLUG $DEST_PRINT $DEST_RT
Bram Moolenaar1e015462005-09-25 22:16:38 +00001144# This will fail when other Vim versions are installed, no worries.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 @try:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001146 :deldir $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 @except:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001148 :print Cannot delete $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001150###############################################################################
1151### MacOS X installation
1152###
1153### This installs a runnable Vim.app in $(prefix)
1154
1155REZ = /Developer/Tools/Rez
1156RESDIR = $(APPDIR)/Contents/Resources
1157@r = re.compile('.*VIM_VERSION_SHORT\\s*"(\\d[^"]*)".*', re.S)
1158VERSION = /`r.match(open("version.h").read()).group(1)`
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001159
1160### Common flags
1161M4FLAGSX = $?(M4FLAGS) -DAPP_EXE=$(VIMNAME) -DAPP_NAME=$(VIMNAME) \
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001162 -DAPP_VER=$(VERSION)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001163
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001164# Resources used for the Mac are in one directory.
1165RSRC_DIR = os_mac_rsrc
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001166
1167:attr {directory = $DIRMOD} $RESDIR
1168
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001169install_macosx {virtual}: gui_bundle
1170# Remove the link to the runtime dir, don't want to copy all of that.
1171 :delete {force} $(RESDIR)/vim/runtime
1172 :copy {r} $APPDIR $DESTDIR$prefix
1173 :tree $DESTDIR$prefix {dirname = AAPDIR}
1174 :delete {recursive} $name
1175# Install the runtime files. Recursive!
1176 :mkdir {r}{f} $DESTDIR$prefix/$RESDIR/vim/runtime
1177# :mkdir $(DESTDIR)$(prefix)/$(APPDIR)/bin
1178 :execute main.aap PREFIX=$DESTDIR$prefix/$RESDIR/vim VIMRTLOC=$DESTDIR$prefix/$RESDIR/vim/runtime installruntime
1179# Put the link back.
1180 :symlink `os.getcwd()`/../runtime $RESDIR/vim/runtime
1181# TODO: Create the vimtutor application.
1182
Bram Moolenaardfc7aa22007-09-25 20:13:54 +00001183gui_bundle {virtual}: $(RESDIR) bundle-dir bundle-executable bundle-info \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001184 bundle-resource bundle-language
1185
1186bundle-dir {virtual}: $(APPDIR)/Contents $(VIMTARGET)
1187# Make a link to the runtime directory, so that we can try out the executable
1188# without installing it.
1189 :mkdir {r}{f} $(RESDIR)/vim
1190 :symlink {quiet} `os.getcwd()`/../runtime $(RESDIR)/vim/runtime
1191
1192bundle-executable {virtual}: $(VIMTARGET)
1193 :mkdir {r}{f} $(APPDIR)/Contents/MacOS
1194 :copy $(VIMTARGET) $(APPDIR)/Contents/MacOS/$(VIMTARGET)
1195
1196bundle-info {virtual}: bundle-dir
1197 :print Creating PkgInfo
1198 :print "APPLVIM!" >! $(APPDIR)/Contents/PkgInfo
1199 :print Creating Info.plist
1200 :sys m4 $(M4FLAGSX) infplist.xml > $(APPDIR)/Contents/Info.plist
1201
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001202bundle-resource {virtual}: bundle-dir bundle-rsrc
Bram Moolenaardfc7aa22007-09-25 20:13:54 +00001203 :copy {force} $(RSRC_DIR)/*.icns $(RESDIR)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001204
1205### Classic resources
1206# Resource fork (in the form of a .rsrc file) for Classic Vim (Mac OS 9)
1207# This file is also required for OS X Vim.
1208bundle-rsrc {virtual}: os_mac.rsr.hqx
1209 :print Creating resource fork
1210 :sys python dehqx.py $source
1211 :del {force} gui_mac.rsrc
1212 :move gui_mac.rsrc.rsrcfork $(RESDIR)/$(VIMNAME).rsrc
1213
1214# po/Make_osx.pl says something about generating a Mac message file
1215# for Ukrananian. Would somebody using Mac OS X in Ukranian
1216# *really* be upset that Carbon Vim was not localised in
1217# Ukranian?
1218#
1219#bundle-language: bundle-dir po/Make_osx.pl
1220# cd po && perl Make_osx.pl --outdir ../$(RESDIR) $(MULTILANG)
1221bundle-language {virtual}: bundle-dir
1222
1223$(APPDIR)/Contents:
1224 :mkdir {r} $(APPDIR)/Contents/MacOS
1225 :mkdir {r} $(RESDIR)/English.lproj
1226
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227
1228# vim: sts=4 sw=4 :