blob: b36fc3662a87238944747e0d09a2ab553adb89ca [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 Moolenaar1e015462005-09-25 22:16:38 +0000293 buffer.c
294 charset.c
295 diff.c
296 digraph.c
297 edit.c
298 eval.c
299 ex_cmds.c
300 ex_cmds2.c
301 ex_docmd.c
302 ex_eval.c
303 ex_getln.c
304 fileio.c
305 fold.c
306 getchar.c
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000307 hardcopy.c
Bram Moolenaar607a95ed2006-03-28 20:57:42 +0000308 hashtab.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000309 if_cscope.c
310 if_xcmdsrv.c
311 main.c
312 mark.c
313 memfile.c
314 memline.c
315 menu.c
316 message.c
317 misc1.c
318 misc2.c
319 move.c
320 mbyte.c
321 normal.c
322 ops.c
323 option.c
324 os_unix.c
325 auto/pathdef.c
Bram Moolenaar607a95ed2006-03-28 20:57:42 +0000326 popupmnu.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000327 quickfix.c
328 regexp.c
329 screen.c
330 search.c
331 spell.c
332 syntax.c
333 tag.c
334 term.c
335 ui.c
336 undo.c
337 window.c
338 $OS_EXTRA_SRC
339 $GUI_SRC
340 $HANGULIN_SRC
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000341 $MZSCHEME_SRC
Bram Moolenaar1e015462005-09-25 22:16:38 +0000342 $PERL_SRC
343 $NETBEANS_SRC
344 $PYTHON_SRC
345 $TCL_SRC
346 $RUBY_SRC
347 $SNIFF_SRC
348 $WORKSHOP_SRC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000350Objects =
Bram Moolenaar1e015462005-09-25 22:16:38 +0000351 $GUI_OBJ
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000352
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353# TODO: make is still used for subdirectories, need to write a recipe.
354MAKE ?= make
355
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000356all: $Target $GUI_BUNDLE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357
358# This dependency is required to build auto/osdef.h before automatic
359# dependencies are generated.
360$Source version.c : auto/osdef.h
361
362# Need to mention that the target also depends on version.c, since it's not
Bram Moolenaarf711faf2007-05-10 16:48:19 +0000363# included in $Source
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364$Target : version.c
365
366# Some sources are to be found in the "auto" directory.
367SRCPATH += auto
368
369# When building Vim always compile version.c to get the timestamp.
370:filetype
371 declare my_prog
372:attr {filetype = my_prog} $Target
373
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000374:program $Target : $Source $Objects
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375
376:action build my_prog object
Bram Moolenaar1e015462005-09-25 22:16:38 +0000377 version_obj = `src2obj("version.c")`
378 :do compile {target = $version_obj} version.c
379 #:do build {target = $target {filetype = program}} $source $version_obj
380 link_sed = $BDIR/link.sed
381 @if os.path.exists(link_sed):
382 :move {force} $link_sed auto/link.sed
383 @else:
384 :del {force} auto/link.sed
385 :update link2.sh
386 :sys LINK="$?(PURIFY) $?(SHRPENV) $CC $LDFLAGS \
387 -o $target $source $version_obj $LIBS" \
388 MAKE="aap" sh ./link2.sh
389 :copy {force} auto/link.sed $BDIR/link.sed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390
391# "link.sh" must be modified for A-A-P
392link2.sh : link.sh
393 :print Adjusting $-source for A-A-P.
394 :cat $source | :eval re.sub("objects/pathdef.o", "pathdef", stdin)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000395 >! $target
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396
397xxd/xxd$EXESUF: xxd/xxd.c
398 :sys cd xxd; CC="$CC" CFLAGS="$CPPFLAGS $CFLAGS" \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000399 $MAKE -f Makefile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
401# Build the language specific files if they were unpacked.
402# Generate the converted .mo files separately, it's no problem if this fails.
403languages {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000404 @if _no.MAKEMO:
405 :sys cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix
406 @try:
407 :sys cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix converted
408 @except:
409 :print Generated converted language files failed, continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
411# Update the *.po files for changes in the sources. Only run manually.
412update-po {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000413 cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix update-po
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414
415auto/if_perl.c: if_perl.xs
Bram Moolenaar1e015462005-09-25 22:16:38 +0000416 :sys $PERL -e 'unless ( $$] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$$_ $$_\n" }}' > $target
417 :sys $PERL $PERLLIB/ExtUtils/xsubpp -prototypes -typemap \
418 $PERLLIB/ExtUtils/typemap if_perl.xs >> $target
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419
420auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
Bram Moolenaar1e015462005-09-25 22:16:38 +0000421 :sys CC="$CC $CFLAGS" srcdir=$srcdir sh $srcdir/osdef.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422
423pathdef {virtual} : $BDIR/auto/pathdef$OBJSUF
424
425auto/pathdef.c: auto/config.aap
Bram Moolenaar1e015462005-09-25 22:16:38 +0000426 :print Creating $target
427 :print >! $target /* pathdef.c */
428 :print >> $target /* This file is automatically created by main.aap */
429 :print >> $target /* DO NOT EDIT! Change main.aap only. */
430 :print >> $target $#include "vim.h"
431 :print >> $target char_u *default_vim_dir = (char_u *)"$VIMRCLOC";
432 :print >> $target char_u *default_vimruntime_dir = (char_u *)"$?VIMRUNTIMEDIR";
433 v = $CC -c -I$srcdir $CFLAGS
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000434 @v = string.replace(v, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000435 :print >> $target char_u *all_cflags = (char_u *)"$v";
436 linkcmd = $CC $LDFLAGS -o $VIMTARGET $LIBS
437 link_sed = $BDIR/link.sed
438 @if os.path.exists(link_sed):
439 # filter $linkcmd through $BDIR/link.sed
440 :print $linkcmd | :syseval sed -f $link_sed | :eval re.sub("\n", "", stdin) | :assign linkcmd
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000441 @linkcmd = string.replace(linkcmd, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000442 :print >> $target char_u *all_lflags = (char_u *)"$linkcmd";
443 @if _no.get("COMPILEDBY"):
444 who = $COMPILEDBY
Bram Moolenaar4f246a92007-12-31 15:42:13 +0000445 where =
Bram Moolenaar1e015462005-09-25 22:16:38 +0000446 @else:
447 :syseval whoami | :eval re.sub("\n", "", stdin) | :assign who
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448
Bram Moolenaar1e015462005-09-25 22:16:38 +0000449 :syseval hostname | :eval re.sub("\n", "", stdin) | :assign where
Bram Moolenaar4f246a92007-12-31 15:42:13 +0000450 @who = string.replace(who, '"', '\\"')
451 @where = string.replace(where, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000452 :print >> $target char_u *compiled_user = (char_u *)"$who";
453 :print >> $target char_u *compiled_sys = (char_u *)"$where";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454
455
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456### Names of the tools that are also made
457TOOLS = xxd/xxd$EXESUF
458
459# Root of the installation tree. Empty for a normal install, set to an
460# existing path to install into a special place (for generating a package).
461DESTDIR ?=
462
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000463### Location of man pages under $MANTOPDIR
464MAN1DIR = /man1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465
466### Location of Vim files (should not need to be changed, and
467### some things might not work when they are changed!)
468VIMDIR = /vim
469@r = re.compile('.*VIM_VERSION_NODOT\\s*"(vim\\d\\d[^"]*)".*', re.S)
470VIMRTDIR = /`r.match(open("version.h").read()).group(1)`
471HELPSUBDIR = /doc
472COLSUBDIR = /colors
473SYNSUBDIR = /syntax
474INDSUBDIR = /indent
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000475AUTOSUBDIR = /autoload
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476PLUGSUBDIR = /plugin
477FTPLUGSUBDIR = /ftplugin
478LANGSUBDIR = /lang
479COMPSUBDIR = /compiler
480KMAPSUBDIR = /keymap
481MACROSUBDIR = /macros
482TOOLSSUBDIR = /tools
483TUTORSUBDIR = /tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000484SPELLSUBDIR = /spell
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485PRINTSUBDIR = /print
486PODIR = po
487
Bram Moolenaar1e015462005-09-25 22:16:38 +0000488### VIMLOC common root of the Vim files (all versions)
489### VIMRTLOC common root of the runtime Vim files (this version)
490### VIMRCLOC compiled-in location for global [g]vimrc files (all versions)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491### VIMRUNTIMEDIR compiled-in location for runtime files (optional)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000492### HELPSUBLOC location for help files
493### COLSUBLOC location for colorscheme files
494### SYNSUBLOC location for syntax files
495### INDSUBLOC location for indent files
496### AUTOSUBLOC location for standard autoload files
497### PLUGSUBLOC location for standard plugin files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498### FTPLUGSUBLOC location for ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000499### LANGSUBLOC location for language files
500### COMPSUBLOC location for compiler files
501### KMAPSUBLOC location for keymap files
502### MACROSUBLOC location for macro files
503### TOOLSSUBLOC location for tools files
504### TUTORSUBLOC location for tutor files
505### PRINTSUBLOC location for print files
506### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507### You can override these if you want to install them somewhere else.
508### Edit feature.h for compile-time settings.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000509VIMLOC = $DATADIR$VIMDIR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000510@if not _no.get("VIMRTLOC"):
511 VIMRTLOC = $DATADIR$VIMDIR$VIMRTDIR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000512VIMRCLOC = $VIMLOC
513HELPSUBLOC = $VIMRTLOC$HELPSUBDIR
514COLSUBLOC = $VIMRTLOC$COLSUBDIR
515SYNSUBLOC = $VIMRTLOC$SYNSUBDIR
516INDSUBLOC = $VIMRTLOC$INDSUBDIR
517AUTOSUBLOC = $VIMRTLOC$AUTOSUBDIR
518PLUGSUBLOC = $VIMRTLOC$PLUGSUBDIR
519FTPLUGSUBLOC = $VIMRTLOC$FTPLUGSUBDIR
520LANGSUBLOC = $VIMRTLOC$LANGSUBDIR
521COMPSUBLOC = $VIMRTLOC$COMPSUBDIR
522KMAPSUBLOC = $VIMRTLOC$KMAPSUBDIR
523MACROSUBLOC = $VIMRTLOC$MACROSUBDIR
524TOOLSSUBLOC = $VIMRTLOC$TOOLSSUBDIR
525TUTORSUBLOC = $VIMRTLOC$TUTORSUBDIR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000526SPELLSUBLOC = $VIMRTLOC$SPELLSUBDIR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000527PRINTSUBLOC = $VIMRTLOC$PRINTSUBDIR
528SCRIPTLOC = $VIMRTLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529
530### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and
531### the runtime directory is not below it.
532#VIMRUNTIMEDIR = $VIMRTLOC
533
534### Name of the evim file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000535EVIM_FILE = $DESTDIR$SCRIPTLOC/evim.vim
536MSWIN_FILE = $DESTDIR$SCRIPTLOC/mswin.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537
538### Name of the menu file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000539SYS_MENU_FILE = $DESTDIR$SCRIPTLOC/menu.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540SYS_SYNMENU_FILE = $DESTDIR$SCRIPTLOC/synmenu.vim
541SYS_DELMENU_FILE = $DESTDIR$SCRIPTLOC/delmenu.vim
542
543### Name of the bugreport file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000544SYS_BUGR_FILE = $DESTDIR$SCRIPTLOC/bugreport.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
546### Name of the file type detection file target.
547SYS_FILETYPE_FILE = $DESTDIR$SCRIPTLOC/filetype.vim
548
549### Name of the file type detection file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000550SYS_FTOFF_FILE = $DESTDIR$SCRIPTLOC/ftoff.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551
552### Name of the file type detection script file target.
553SYS_SCRIPTS_FILE = $DESTDIR$SCRIPTLOC/scripts.vim
554
555### Name of the ftplugin-on file target.
556SYS_FTPLUGIN_FILE = $DESTDIR$SCRIPTLOC/ftplugin.vim
557
558### Name of the ftplugin-off file target.
559SYS_FTPLUGOF_FILE = $DESTDIR$SCRIPTLOC/ftplugof.vim
560
561### Name of the indent-on file target.
562SYS_INDENT_FILE = $DESTDIR$SCRIPTLOC/indent.vim
563
564### Name of the indent-off file target.
565SYS_INDOFF_FILE = $DESTDIR$SCRIPTLOC/indoff.vim
566
567### Name of the option window script file target.
568SYS_OPTWIN_FILE = $DESTDIR$SCRIPTLOC/optwin.vim
569
570### Permissions for binaries
571BINMOD = 755
572
573### Permissions for man page
574MANMOD = 644
575
576### Permissions for help files
577HELPMOD = 644
578
579### Permissions for Perl and shell scripts
580SCRIPTMOD = 755
581
582### Permission for Vim script files (menu.vim, bugreport.vim, ..)
583VIMSCRIPTMOD = 644
584
585### Permissions for all directories that are created
586DIRMOD = 755
587
588### Permissions for all other files that are created
589FILEMOD = 644
590
591# Where to copy the man and help files from
592HELPSOURCE = ../runtime/doc
593
594# Where to copy the script files from (menu, bugreport)
595SCRIPTSOURCE = ../runtime
596
597# Where to copy the colorscheme files from
598COLSOURCE = ../runtime/colors
599
600# Where to copy the syntax files from
601SYNSOURCE = ../runtime/syntax
602
603# Where to copy the indent files from
604INDSOURCE = ../runtime/indent
605
606# Where to copy the standard plugin files from
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000607AUTOSOURCE = ../runtime/autoload
608
609# Where to copy the standard plugin files from
Bram Moolenaar071d4272004-06-13 20:20:40 +0000610PLUGSOURCE = ../runtime/plugin
611
612# Where to copy the ftplugin files from
613FTPLUGSOURCE = ../runtime/ftplugin
614
615# Where to copy the macro files from
616MACROSOURCE = ../runtime/macros
617
618# Where to copy the tools files from
619TOOLSSOURCE = ../runtime/tools
620
621# Where to copy the tutor files from
622TUTORSOURCE = ../runtime/tutor
623
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000624# Where to copy the spell files from
625SPELLSOURCE = ../runtime/spell
626
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627# Where to look for language specific files
628LANGSOURCE = ../runtime/lang
629
630# Where to look for compiler files
631COMPSOURCE = ../runtime/compiler
632
633# Where to look for keymap files
634KMAPSOURCE = ../runtime/keymap
635
636# Where to look for print resource files
637PRINTSOURCE = ../runtime/print
638
639# abbreviations
640DEST_BIN = $DESTDIR$BINDIR
641DEST_VIM = $DESTDIR$VIMLOC
642DEST_RT = $DESTDIR$VIMRTLOC
643DEST_HELP = $DESTDIR$HELPSUBLOC
644DEST_COL = $DESTDIR$COLSUBLOC
645DEST_SYN = $DESTDIR$SYNSUBLOC
646DEST_IND = $DESTDIR$INDSUBLOC
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000647DEST_AUTO = $DESTDIR$AUTOSUBLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648DEST_PLUG = $DESTDIR$PLUGSUBLOC
649DEST_FTP = $DESTDIR$FTPLUGSUBLOC
650DEST_LANG = $DESTDIR$LANGSUBLOC
651DEST_COMP = $DESTDIR$COMPSUBLOC
652DEST_KMAP = $DESTDIR$KMAPSUBLOC
653DEST_MACRO = $DESTDIR$MACROSUBLOC
654DEST_TOOLS = $DESTDIR$TOOLSSUBLOC
655DEST_TUTOR = $DESTDIR$TUTORSUBLOC
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000656DEST_SPELL = $DESTDIR$SPELLSUBLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657DEST_SCRIPT = $DESTDIR$SCRIPTLOC
658DEST_PRINT = $DESTDIR$PRINTSUBLOC
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000659DEST_MAN_TOP = $DESTDIR$?(MANDIR)
660
661# We assume that the ".../man/xx/man1/" directory is for latin1 manual pages.
662# Some systems use UTF-8, but these should find the ".../man/xx.UTF-8/man1/"
663# directory first.
664# FreeBSD uses ".../man/xx.ISO8859-1/man1" for latin1, use that one too.
665DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR)
666DEST_MAN_FR = $(DEST_MAN_TOP)/fr$(MAN1DIR)
667DEST_MAN_FR_I = $(DEST_MAN_TOP)/fr.ISO8859-1$(MAN1DIR)
668DEST_MAN_FR_U = $(DEST_MAN_TOP)/fr.UTF-8$(MAN1DIR)
669DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR)
670DEST_MAN_IT_I = $(DEST_MAN_TOP)/it.ISO8859-1$(MAN1DIR)
671DEST_MAN_IT_U = $(DEST_MAN_TOP)/it.UTF-8$(MAN1DIR)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000672DEST_MAN_PL = $(DEST_MAN_TOP)/pl.ISO8859-2$(MAN1DIR)
673DEST_MAN_PL_U = $(DEST_MAN_TOP)/pl.UTF-8$(MAN1DIR)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000674DEST_MAN_RU = $(DEST_MAN_TOP)/ru.KOI8-R$(MAN1DIR)
675DEST_MAN_RU_U = $(DEST_MAN_TOP)/ru.UTF-8$(MAN1DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
677# These are directories, create them when needed.
678:attr {directory = $DIRMOD} $DEST_BIN $DEST_VIM $DEST_RT $DEST_HELP $DEST_COL
Bram Moolenaar18144c82006-04-12 21:52:12 +0000679 $DEST_SYN $DEST_IND $DEST_AUTO $DEST_AUTO/xml $DEST_PLUG
680 $DEST_FTP $DEST_LANG
Bram Moolenaar1e015462005-09-25 22:16:38 +0000681 $DEST_COMP $DEST_KMAP $DEST_MACRO $DEST_TOOLS $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000682 $DEST_SCRIPT $DEST_PRINT $DEST_MAN $DEST_SPELL
683 $DEST_MAN_FR $DEST_MAN_FR_I $DEST_MAN_FR_U $DEST_MAN_IT
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000684 $DEST_MAN_IT_I $DEST_MAN_IT_U
685 $DEST_MAN_PL $DEST_MAN_PL_U
686 $DEST_MAN_RU $DEST_MAN_RU_U
Bram Moolenaar071d4272004-06-13 20:20:40 +0000687
688#
689# I N S T A L L
690#
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000691install: $GUI_INSTALL
692
693install_normal:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 @if not os.path.isdir(_no.DEST_BIN):
695 @try:
696 :mkdir $DEST_BIN
697 @except:
698 @ pass
699 @if os.access(_no.DEST_BIN, os.W_OK):
700 # Bin directory is writable, install directly.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000701 :update installvim installtools $INSTALL_LANGS install-icons
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 @else:
703 # Bin directory is not writable, need to become root.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000704 :print The destination directory "$DEST_BIN" is not writable.
705 :print If this is the wrong directory, use PREFIX to specify another one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 :print Otherwise, type the root password to continue installing.
707 :asroot $AAP install
708
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000709installvim {virtual}: installvimbin installtutorbin \
710 installruntime installlinks installmanlinks
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711
712installvimbin {virtual}{force}: $Target $DEST_BIN
Bram Moolenaar1e015462005-09-25 22:16:38 +0000713 exe = $DEST_BIN/$VIMTARGET
714 @if os.path.exists(exe):
715 # Move the old executable aside and delete it. Any other method
716 # may cause a crash if the executable is currently being used.
717 :move {force} $exe $(exe).rm
718 :del {force} $(exe).rm
719 :copy $VIMTARGET $DEST_BIN
720 :do strip $exe
721 :chmod $BINMOD $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722# may create a link to the new executable from /usr/bin/vi
Bram Moolenaar1e015462005-09-25 22:16:38 +0000723 @if _no.get("LINKIT"):
724 :sys $LINKIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000726# Long list of arguments for the shell script that installs the manual pages
727# for one language.
728INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \
729 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME)
730
731# Install most of the runtime files
732installruntime {virtual}: installrtbase installmacros installtutor installspell
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734# install the help files; first adjust the contents for the location
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000735installrtbase {virtual}{force}: $HELPSOURCE/vim.1 $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000736 $DEST_RT $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
Bram Moolenaar18144c82006-04-12 21:52:12 +0000737 $DEST_FTP $DEST_AUTO $DEST_AUTO/xml $DEST_PLUG $DEST_TUTOR
738 $DEST_COMP $DEST_SPELL $DEST_PRINT
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000739 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000740 :sys ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741
742 :cd $HELPSOURCE
743 @try:
744 XTRA = `glob.glob("*.??x")` `glob.glob("tags-??")`
745 @except:
746 XTRA = # It's OK if there are no matches.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000747 :copy *.txt tags $XTRA $DEST_HELP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 :cd -
749 :cd $DEST_HELP
Bram Moolenaar1e015462005-09-25 22:16:38 +0000750 :chmod $HELPMOD *.txt tags $XTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 :cd -
Bram Moolenaar1e015462005-09-25 22:16:38 +0000752 :copy $HELPSOURCE/*.pl $DEST_HELP
753 :chmod $SCRIPTMOD $DEST_HELP/*.pl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754# install the menu files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000755 :copy $SCRIPTSOURCE/menu.vim $SYS_MENU_FILE
756 :chmod $VIMSCRIPTMOD $SYS_MENU_FILE
757 :copy $SCRIPTSOURCE/synmenu.vim $SYS_SYNMENU_FILE
758 :chmod $VIMSCRIPTMOD $SYS_SYNMENU_FILE
759 :copy $SCRIPTSOURCE/delmenu.vim $SYS_DELMENU_FILE
760 :chmod $VIMSCRIPTMOD $SYS_DELMENU_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761# install the evim file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000762 :copy $SCRIPTSOURCE/mswin.vim $MSWIN_FILE
763 :chmod $VIMSCRIPTMOD $MSWIN_FILE
764 :copy $SCRIPTSOURCE/evim.vim $EVIM_FILE
765 :chmod $VIMSCRIPTMOD $EVIM_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766# install the bugreport file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000767 :copy $SCRIPTSOURCE/bugreport.vim $SYS_BUGR_FILE
768 :chmod $VIMSCRIPTMOD $SYS_BUGR_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769# install the example vimrc files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000770 :copy $SCRIPTSOURCE/vimrc_example.vim $DEST_SCRIPT
771 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/vimrc_example.vim
772 :copy $SCRIPTSOURCE/gvimrc_example.vim $DEST_SCRIPT
773 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/gvimrc_example.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000774# install the file type detection files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000775 :copy $SCRIPTSOURCE/filetype.vim $SYS_FILETYPE_FILE
776 :chmod $VIMSCRIPTMOD $SYS_FILETYPE_FILE
777 :copy $SCRIPTSOURCE/ftoff.vim $SYS_FTOFF_FILE
778 :chmod $VIMSCRIPTMOD $SYS_FTOFF_FILE
779 :copy $SCRIPTSOURCE/scripts.vim $SYS_SCRIPTS_FILE
780 :chmod $VIMSCRIPTMOD $SYS_SCRIPTS_FILE
781 :copy $SCRIPTSOURCE/ftplugin.vim $SYS_FTPLUGIN_FILE
782 :chmod $VIMSCRIPTMOD $SYS_FTPLUGIN_FILE
783 :copy $SCRIPTSOURCE/ftplugof.vim $SYS_FTPLUGOF_FILE
784 :chmod $VIMSCRIPTMOD $SYS_FTPLUGOF_FILE
785 :copy $SCRIPTSOURCE/indent.vim $SYS_INDENT_FILE
786 :chmod $VIMSCRIPTMOD $SYS_INDENT_FILE
787 :copy $SCRIPTSOURCE/indoff.vim $SYS_INDOFF_FILE
788 :chmod $VIMSCRIPTMOD $SYS_INDOFF_FILE
789 :copy $SCRIPTSOURCE/optwin.vim $SYS_OPTWIN_FILE
790 :chmod $VIMSCRIPTMOD $SYS_OPTWIN_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791# install the print resource files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000792 :copy $PRINTSOURCE/*.ps $DEST_PRINT
793 :chmod $FILEMOD $DEST_PRINT/*.ps
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794# install the colorscheme files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000795 :copy $COLSOURCE/*.vim $COLSOURCE/README.txt $DEST_COL
796 :chmod $HELPMOD $DEST_COL/*.vim $DEST_COL/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797# install the syntax files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000798 :copy $SYNSOURCE/*.vim $SYNSOURCE/README.txt $DEST_SYN
799 :chmod $HELPMOD $DEST_SYN/*.vim $DEST_SYN/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800# install the indent files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000801 :copy $INDSOURCE/*.vim $INDSOURCE/README.txt $DEST_IND
802 :chmod $HELPMOD $DEST_IND/*.vim
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000803# install the standard autoload files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000804 :copy $AUTOSOURCE/*.vim $AUTOSOURCE/README.txt $DEST_AUTO
805 :chmod $HELPMOD $DEST_AUTO/*.vim $DEST_AUTO/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +0000806 :copy $AUTOSOURCE/xml/*.vim $DEST_AUTO/xml
807 :chmod $HELPMOD $DEST_AUTO/xml/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808# install the standard plugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000809 :copy $PLUGSOURCE/*.vim $PLUGSOURCE/README.txt $DEST_PLUG
810 :chmod $HELPMOD $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811# install the ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000812 :copy $FTPLUGSOURCE/*.vim $FTPLUGSOURCE/README.txt $DEST_FTP
813 :chmod $HELPMOD $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000814# install the compiler files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000815 :copy $COMPSOURCE/*.vim $COMPSOURCE/README.txt $DEST_COMP
816 :chmod $HELPMOD $DEST_COMP/*.vim $DEST_COMP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817
818installmacros {virtual}{force}: $MACROSOURCE $DEST_VIM $DEST_RT $DEST_MACRO
Bram Moolenaar1e015462005-09-25 22:16:38 +0000819 :copy {recursive}{force} $MACROSOURCE/* $DEST_MACRO
820 # Delete any CVS and AAPDIR directories.
821 # Use the ":tree" command if possible. It was added later, fall back
822 # to using "find" when it doesn't work.
823 @try:
824 :tree $DEST_MACRO {dirname = CVS}
825 :del {recursive} $name
826 :tree $DEST_MACRO {dirname = AAPDIR}
827 :del {recursive} $name
828 :tree $DEST_MACRO {dirname = .*}
829 :chmod $DIRMOD $name
830 :tree $DEST_MACRO {filename = .*}
831 :chmod $FILEMOD $name
832 @except:
833 @ ok, cvsdirs = redir_system('find %s -name CVS -print' % _no.DEST_MACRO)
834 @ if ok and cvsdirs:
835 :del {recursive} $cvsdirs
836 :sys chmod $DIRMOD ``find $DEST_MACRO -type d -print``
837 :sys chmod $FILEMOD ``find $DEST_MACRO -type f -print``
838 :chmod $SCRIPTMOD $DEST_MACRO/less.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839
840# install the tutor files
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000841installtutorbin {virtual}{force}: $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000842 :copy vimtutor $DEST_BIN/$(VIMNAME)tutor
843 :chmod $SCRIPTMOD $DEST_BIN/$(VIMNAME)tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000844
845installtutor {virtual}{force}: $DEST_RT $DEST_TUTOR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000846 :copy $TUTORSOURCE/tutor* $TUTORSOURCE/README* $DEST_TUTOR
847 :chmod $HELPMOD $DEST_TUTOR/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000849# Install the spell files, if they exist. This assumes at least the English
850# spell file is there.
851installspell {virtual}: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
852 enspl = $(SPELLSOURCE)/en.latin1.spl
853 @if os.path.exists(enspl):
854 :copy $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.vim $(DEST_SPELL)
855 :chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.vim
856 @try:
857 :copy $(SPELLSOURCE)/*.sug $(DEST_SPELL)
858 :chmod $(HELPMOD) $(DEST_SPELL)/*.sug
859 @except:
860 @ pass
861
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862# install helper program xxd
863installtools {virtual}{force}: $TOOLS $DEST_BIN $DEST_MAN \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000864 $TOOLSSOURCE $DEST_VIM $DEST_RT $DEST_TOOLS \
865 $INSTALL_TOOL_LANGS
Bram Moolenaar1e015462005-09-25 22:16:38 +0000866 xxd = $DEST_BIN/xxd$EXESUF
867 @if os.path.exists(xxd):
868 :move {force} $xxd $(xxd).rm
869 :del $(xxd).rm
870 :copy xxd/xxd$EXESUF $DEST_BIN
871 :do strip $DEST_BIN/xxd$EXESUF
872 :chmod $BINMOD $DEST_BIN/xxd$EXESUF
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000873 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000874 :sys ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS)
875#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876# install the runtime tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000877 @try:
878 @ if aap_has(":tree"):
879 # New method: copy everything and delete CVS and AAPDIR dirs
880 :copy {recursive} $TOOLSSOURCE/* $DEST_TOOLS
881 :tree $DEST_TOOLS {dirname = CVS}
882 :delete {recursive} $name
883 :tree $DEST_TOOLS {dirname = AAPDIR}
884 :delete {recursive} $name
885 @except:
886 # Old method: copy only specific files and directories.
887 :copy {recursive} $TOOLSSOURCE/README.txt $TOOLSSOURCE/[a-z]* $DEST_TOOLS
888 :chmod $FILEMOD $DEST_TOOLS/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889# replace the path in some tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000890 :progsearch perlpath perl
891 @if perlpath:
892 :cat $TOOLSSOURCE/efm_perl.pl |
893 :eval re.sub("/usr/bin/perl", perlpath, stdin)
894 >! $DEST_TOOLS/efm_perl.pl
895 @else:
896 :copy $TOOLSSOURCE/efm_perl.pl $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897
Bram Moolenaar1e015462005-09-25 22:16:38 +0000898 :progsearch awkpath nawk gawk awk
899 @if awkpath:
900 :cat $TOOLSSOURCE/mve.awk |
901 :eval re.sub("/usr/bin/nawk", awkpath, stdin)
902 >! $DEST_TOOLS/mve.awk
903 @else:
904 :copy $TOOLSSOURCE/mve.awk $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905
Bram Moolenaar1e015462005-09-25 22:16:38 +0000906 :sys chmod $SCRIPTMOD ``grep -l "^#!" $DEST_TOOLS/*``
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000908# install the language specific files for tools, if they were unpacked
909install-tool-languages:
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000910 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000911 :sys ./installman.sh xxd $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
912 :sys ./installman.sh xxd $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
913 :sys ./installman.sh xxd $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
914 :sys ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
915 :sys ./installman.sh xxd $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
916 :sys ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000917 :sys ./installman.sh xxd $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
918 :sys ./installman.sh xxd $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000919 :sys ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
920 :sys ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
921
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922# install the language specific files, if they were unpacked
923install-languages {virtual}{force}: languages $DEST_LANG $DEST_KMAP
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000924 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000925 :sys ./installman.sh install $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
926 :sys ./installman.sh install $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
927 :sys ./installman.sh install $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
928 :sys ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
929 :sys ./installman.sh install $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
930 :sys ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000931 :sys ./installman.sh install $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
932 :sys ./installman.sh install $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000933 :sys ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
934 :sys ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000935 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000936 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
937 $(DEST_MAN_FR) $(INSTALLMLARGS)
938 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
939 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
940 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
941 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
942 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
943 $(DEST_MAN_IT) $(INSTALLMLARGS)
944 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
945 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
946 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
947 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
948 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000949 $(DEST_MAN_PL) $(INSTALLMLARGS)
950 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
951 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
952 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000953 $(DEST_MAN_RU) $(INSTALLMLARGS)
954 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
955 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
956
Bram Moolenaar1e015462005-09-25 22:16:38 +0000957 @if _no.MAKEMO:
958 :sys cd $PODIR; $MAKE prefix=$DESTDIR$prefix \
959 LOCALEDIR=$DEST_LANG INSTALL_DATA=cp FILEMOD=$FILEMOD install
960 @if os.path.exists(_no.LANGSOURCE):
961 :print installing language files
962 :copy $LANGSOURCE/README.txt $LANGSOURCE/*.vim $DEST_LANG
963 :chmod $FILEMOD $DEST_LANG/*.vim
964 @if os.path.exists(_no.KMAPSOURCE):
965 :copy $KMAPSOURCE/README.txt $KMAPSOURCE/*.vim $DEST_KMAP
966 :chmod $FILEMOD $DEST_KMAP/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968# install the icons for KDE, if the directory exists and the icon doesn't.
969ICON48PATH = $DESTDIR$DATADIR/icons/hicolor/48x48/apps
970ICON32PATH = $DESTDIR$DATADIR/icons/locolor/32x32/apps
971ICON16PATH = $DESTDIR$DATADIR/icons/locolor/16x16/apps
972KDEPATH = $HOME/.kde/share/icons
973install-icons {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000974 gp = $ICON48PATH/gvim.png
975 @if os.path.isdir(_no.ICON48PATH) and not os.path.exists(gp):
976 :copy $SCRIPTSOURCE/vim48x48.png $gp
977 gp = $ICON32PATH/gvim.png
978 @if os.path.isdir(_no.ICON32PATH) and not os.path.exists(gp):
979 :copy $SCRIPTSOURCE/vim32x32.png $gp
980 gp = $ICON16PATH/gvim.png
981 @if os.path.isdir(_no.ICON16PATH) and not os.path.exists(gp):
982 :copy $SCRIPTSOURCE/vim16x16.png $gp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983
984
985$HELPSOURCE/vim.1 $MACROSOURCE $TOOLSSOURCE:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000986 @if not os.path.exists(_no.TOOLSSOURCE):
987 :print Runtime files not found.
988 :error You need to unpack the runtime archive before running "make install".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989
990# create links from various names to vim. This is only done when the links
991# (or executables with the same name) don't exist yet.
992installlinks {virtual}: $GUI_TARGETS \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000993 $DEST_BIN/$EXTARGET \
994 $DEST_BIN/$VIEWTARGET \
995 $DEST_BIN/$RVIMTARGET \
996 $DEST_BIN/$RVIEWTARGET \
997 $INSTALLVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998
999installglinks {virtual}: $DEST_BIN/$GVIMTARGET \
Bram Moolenaar1e015462005-09-25 22:16:38 +00001000 $DEST_BIN/$GVIEWTARGET \
1001 $DEST_BIN/$RGVIMTARGET \
1002 $DEST_BIN/$RGVIEWTARGET \
1003 $DEST_BIN/$EVIMTARGET \
1004 $DEST_BIN/$EVIEWTARGET \
1005 $INSTALLGVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006
1007installvimdiff {virtual}: $DEST_BIN/$VIMDIFFTARGET
1008installgvimdiff {virtual}: $DEST_BIN/$GVIMDIFFTARGET
1009
1010# These dependencies use an empty buildcheck so that they are only done when
1011# the target doesn't exist.
1012$DEST_BIN/$EXTARGET: {buildcheck = }
1013 :sys cd $DEST_BIN; ln -s $VIMTARGET $EXTARGET
1014
1015$DEST_BIN/$VIEWTARGET: {buildcheck = }
1016 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIEWTARGET
1017
1018$DEST_BIN/$GVIMTARGET: {buildcheck = }
1019 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMTARGET
1020
1021$DEST_BIN/$GVIEWTARGET: {buildcheck = }
1022 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIEWTARGET
1023
1024$DEST_BIN/$RVIMTARGET: {buildcheck = }
1025 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIMTARGET
1026
1027$DEST_BIN/$RVIEWTARGET: {buildcheck = }
1028 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIEWTARGET
1029
1030$DEST_BIN/$RGVIMTARGET: {buildcheck = }
1031 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIMTARGET
1032
1033$DEST_BIN/$RGVIEWTARGET: {buildcheck = }
1034 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIEWTARGET
1035
1036$DEST_BIN/$VIMDIFFTARGET: {buildcheck = }
1037 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIMDIFFTARGET
1038
1039$DEST_BIN/$GVIMDIFFTARGET: {buildcheck = }
1040 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMDIFFTARGET
1041
1042$DEST_BIN/$EVIMTARGET: {buildcheck = }
1043 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIMTARGET
1044
1045$DEST_BIN/$EVIEWTARGET: {buildcheck = }
1046 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIEWTARGET
1047
Bram Moolenaar1e015462005-09-25 22:16:38 +00001048# create links for the manual pages with various names to vim. This is only
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049# done when the links (or manpages with the same name) don't exist yet.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001050INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \
1051 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \
1052 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \
1053 $(GVIMDIFFNAME) $(EVIEWNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001055installmanlinks {virtual}:
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001056 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001057 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
1058 $(DEST_MAN) $(INSTALLMLARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059
1060#
1061# U N I N S T A L L
1062#
1063uninstall {virtual}{force}: uninstall_runtime
1064 :del {force} $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 :del {force} $DEST_BIN/vimtutor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066 :del {force} $DEST_BIN/$EXTARGET $DEST_BIN/$VIEWTARGET
1067 :del {force} $DEST_BIN/$GVIMTARGET $DEST_BIN/$GVIEWTARGET
1068 :del {force} $DEST_BIN/$RVIMTARGET $DEST_BIN/$RVIEWTARGET
1069 :del {force} $DEST_BIN/$RGVIMTARGET $DEST_BIN/$RGVIEWTARGET
1070 :del {force} $DEST_BIN/$VIMDIFFTARGET $DEST_BIN/$GVIMDIFFTARGET
1071 :del {force} $DEST_BIN/$EVIMTARGET $DEST_BIN/$EVIEWTARGET
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001072 :del {force} $DEST_BIN/xxd$EXESUF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073
1074# Note: "deldir" will fail if any files were added after "make install", that
1075# is intentionally: Keep files the user added.
1076uninstall_runtime {virtual}{force}:
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001077 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001078 :sys ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS)
1079 :sys ./installman.sh uninstall $(DEST_MAN_FR) "" $(INSTALLMANARGS)
1080 :sys ./installman.sh uninstall $(DEST_MAN_FR_I) "" $(INSTALLMANARGS)
1081 :sys ./installman.sh uninstall $(DEST_MAN_FR_U) "" $(INSTALLMANARGS)
1082 :sys ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS)
1083 :sys ./installman.sh uninstall $(DEST_MAN_IT_I) "" $(INSTALLMANARGS)
1084 :sys ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001085 :sys ./installman.sh uninstall $(DEST_MAN_PL) "" $(INSTALLMANARGS)
1086 :sys ./installman.sh uninstall $(DEST_MAN_PL_U) "" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001087 :sys ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS)
1088 :sys ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001089 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001090 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1091 $(DEST_MAN) $(INSTALLMLARGS)
1092 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1093 $(DEST_MAN_FR) $(INSTALLMLARGS)
1094 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1095 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
1096 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1097 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
1098 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1099 $(DEST_MAN_IT) $(INSTALLMLARGS)
1100 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1101 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
1102 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1103 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
1104 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001105 $(DEST_MAN_PL) $(INSTALLMLARGS)
1106 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1107 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
1108 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001109 $(DEST_MAN_RU) $(INSTALLMLARGS)
1110 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1111 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
1112 :del {force} $DEST_MAN/xxd.1
1113 :del {force} $(DEST_MAN_FR)/xxd.1 $(DEST_MAN_FR_I)/xxd.1 $(DEST_MAN_FR_U)/xxd.1
1114 :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 +00001115 :del {force} $(DEST_MAN_PL)/xxd.1 $(DEST_MAN_PL_U)/xxd.1
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001116 :del {force} $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1
1117
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 :del {force} $DEST_HELP/*.txt $DEST_HELP/tags $DEST_HELP/*.pl
1119 :del {force} $SYS_MENU_FILE $SYS_SYNMENU_FILE $SYS_DELMENU_FILE
1120 :del {force} $SYS_BUGR_FILE $EVIM_FILE $MSWIN_FILE
1121 :del {force} $DEST_SCRIPT/gvimrc_example.vim $DEST_SCRIPT/vimrc_example.vim
1122 :del {force} $SYS_FILETYPE_FILE $SYS_FTOFF_FILE $SYS_SCRIPTS_FILE
1123 :del {force} $SYS_INDOFF_FILE $SYS_INDENT_FILE
1124 :del {force} $SYS_FTPLUGOF_FILE $SYS_FTPLUGIN_FILE
1125 :del {force} $SYS_OPTWIN_FILE
1126 :del {force} $DEST_COL/*.vim $DEST_COL/README.txt
1127 :del {force} $DEST_SYN/*.vim $DEST_SYN/README.txt
1128 :del {force} $DEST_IND/*.vim $DEST_IND/README.txt
1129 :del {force} $DEST_PRINT/*.ps
1130 :del {force}{recursive} $DEST_MACRO
1131 :del {force}{recursive} $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001132 :del {force}{recursive} $DEST_SPELL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 :del {force}{recursive} $DEST_TOOLS
1134 :del {force}{recursive} $DEST_LANG
1135 :del {force}{recursive} $DEST_KMAP
1136 :del {force}{recursive} $DEST_COMP
1137 :deldir {force} $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
1138 :del {force}{recursive} $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +00001139 :del {force} $DEST_AUTO/*.vim $DEST_AUTO/README.txt $DEST_AUTO/xml/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 :del {force} $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +00001141 :deldir {force} $DEST_FTP $DEST_AUTO/xml $DEST_AUTO $DEST_PLUG $DEST_PRINT $DEST_RT
Bram Moolenaar1e015462005-09-25 22:16:38 +00001142# This will fail when other Vim versions are installed, no worries.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143 @try:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001144 :deldir $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 @except:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001146 :print Cannot delete $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001148###############################################################################
1149### MacOS X installation
1150###
1151### This installs a runnable Vim.app in $(prefix)
1152
1153REZ = /Developer/Tools/Rez
1154RESDIR = $(APPDIR)/Contents/Resources
1155@r = re.compile('.*VIM_VERSION_SHORT\\s*"(\\d[^"]*)".*', re.S)
1156VERSION = /`r.match(open("version.h").read()).group(1)`
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001157
1158### Common flags
1159M4FLAGSX = $?(M4FLAGS) -DAPP_EXE=$(VIMNAME) -DAPP_NAME=$(VIMNAME) \
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001160 -DAPP_VER=$(VERSION)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001161
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001162# Resources used for the Mac are in one directory.
1163RSRC_DIR = os_mac_rsrc
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001164
1165:attr {directory = $DIRMOD} $RESDIR
1166
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001167install_macosx {virtual}: gui_bundle
1168# Remove the link to the runtime dir, don't want to copy all of that.
1169 :delete {force} $(RESDIR)/vim/runtime
1170 :copy {r} $APPDIR $DESTDIR$prefix
1171 :tree $DESTDIR$prefix {dirname = AAPDIR}
1172 :delete {recursive} $name
1173# Install the runtime files. Recursive!
1174 :mkdir {r}{f} $DESTDIR$prefix/$RESDIR/vim/runtime
1175# :mkdir $(DESTDIR)$(prefix)/$(APPDIR)/bin
1176 :execute main.aap PREFIX=$DESTDIR$prefix/$RESDIR/vim VIMRTLOC=$DESTDIR$prefix/$RESDIR/vim/runtime installruntime
1177# Put the link back.
1178 :symlink `os.getcwd()`/../runtime $RESDIR/vim/runtime
1179# TODO: Create the vimtutor application.
1180
Bram Moolenaardfc7aa22007-09-25 20:13:54 +00001181gui_bundle {virtual}: $(RESDIR) bundle-dir bundle-executable bundle-info \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001182 bundle-resource bundle-language
1183
1184bundle-dir {virtual}: $(APPDIR)/Contents $(VIMTARGET)
1185# Make a link to the runtime directory, so that we can try out the executable
1186# without installing it.
1187 :mkdir {r}{f} $(RESDIR)/vim
1188 :symlink {quiet} `os.getcwd()`/../runtime $(RESDIR)/vim/runtime
1189
1190bundle-executable {virtual}: $(VIMTARGET)
1191 :mkdir {r}{f} $(APPDIR)/Contents/MacOS
1192 :copy $(VIMTARGET) $(APPDIR)/Contents/MacOS/$(VIMTARGET)
1193
1194bundle-info {virtual}: bundle-dir
1195 :print Creating PkgInfo
1196 :print "APPLVIM!" >! $(APPDIR)/Contents/PkgInfo
1197 :print Creating Info.plist
1198 :sys m4 $(M4FLAGSX) infplist.xml > $(APPDIR)/Contents/Info.plist
1199
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001200bundle-resource {virtual}: bundle-dir bundle-rsrc
Bram Moolenaardfc7aa22007-09-25 20:13:54 +00001201 :copy {force} $(RSRC_DIR)/*.icns $(RESDIR)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001202
1203### Classic resources
1204# Resource fork (in the form of a .rsrc file) for Classic Vim (Mac OS 9)
1205# This file is also required for OS X Vim.
1206bundle-rsrc {virtual}: os_mac.rsr.hqx
1207 :print Creating resource fork
1208 :sys python dehqx.py $source
1209 :del {force} gui_mac.rsrc
1210 :move gui_mac.rsrc.rsrcfork $(RESDIR)/$(VIMNAME).rsrc
1211
1212# po/Make_osx.pl says something about generating a Mac message file
1213# for Ukrananian. Would somebody using Mac OS X in Ukranian
1214# *really* be upset that Carbon Vim was not localised in
1215# Ukranian?
1216#
1217#bundle-language: bundle-dir po/Make_osx.pl
1218# cd po && perl Make_osx.pl --outdir ../$(RESDIR) $(MULTILANG)
1219bundle-language {virtual}: bundle-dir
1220
1221$(APPDIR)/Contents:
1222 :mkdir {r} $(APPDIR)/Contents/MacOS
1223 :mkdir {r} $(RESDIR)/English.lproj
1224
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225
1226# vim: sts=4 sw=4 :