blob: a4de631c038286f57b108084a965b5716f7c35dc [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
59 :sys CONFIG_STATUS=auto/config.status
Bram Moolenaar071d4272004-06-13 20:20:40 +000060 ./configure.aap `file2string("config.arg")`
Bram Moolenaar8ab561d2006-03-23 22:44:10 +000061 --with-mac-arch=ppc
Bram Moolenaar071d4272004-06-13 20:20:40 +000062 --cache-file=auto/config.cache
63
64 # Configure arguments: create an empty "config.arg" file when its missing
65 config.arg:
Bram Moolenaar1e015462005-09-25 22:16:38 +000066 :touch {exist} config.arg
Bram Moolenaar071d4272004-06-13 20:20:40 +000067
68 # "auto/config.aap" contains a lot of settings, such as the name of the
69 # executable "Target".
70 # First update it, forcefully if the "reconfig" target was used.
71 @if _no.TARGETARG != "comment" and _no.TARGETARG != "make":
Bram Moolenaar1e015462005-09-25 22:16:38 +000072 @if "reconfig" in var2list(_no.TARGETARG):
73 :del {force} auto/config.cache auto/config.status
74 :update {force} auto/config.aap
75 @else:
76 :update auto/config.aap
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
78# Include the recipe that autoconf generated.
79:include auto/config.aap
80
Bram Moolenaara226a6d2006-02-26 23:59:20 +000081# Unfortunately "-M" doesn't work when building for two architectures. Switch
82# back to PPC only.
83@if string.find(_no.CPPFLAGS, "-arch i386 -arch ppc") >= 0:
84 CPPFLAGS = `string.replace(_no.CPPFLAGS, "-arch i386 -arch ppc", "-arch ppc")`
85
Bram Moolenaar071d4272004-06-13 20:20:40 +000086# A "PREFIX=dir" argument overrules the value of $prefix
Bram Moolenaar8ab561d2006-03-23 22:44:10 +000087# But don't use the default "/usr/local".
88@if _no.get("PREFIX") and _no.get("PREFIX") != '/usr/local':
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 prefix = $PREFIX
90
91# Don't want "~/" in prefix.
92prefix = `os.path.expanduser(prefix)`
93
Bram Moolenaar8ab561d2006-03-23 22:44:10 +000094# For Mac.
95APPDIR = $(VIMNAME).app
96
97### Names of the programs and targets
98VIMTARGET = $VIMNAME$EXESUF
99EXTARGET = $EXNAME$LNKSUF
100VIEWTARGET = $VIEWNAME$LNKSUF
101GVIMNAME = g$VIMNAME
102GVIMTARGET = $GVIMNAME$LNKSUF
103GVIEWNAME = g$VIEWNAME
104GVIEWTARGET = $GVIEWNAME$LNKSUF
105RVIMNAME = r$VIMNAME
106RVIMTARGET = $RVIMNAME$LNKSUF
107RVIEWNAME = r$VIEWNAME
108RVIEWTARGET = $RVIEWNAME$LNKSUF
109RGVIMNAME = r$GVIMNAME
110RGVIMTARGET = $RGVIMNAME$LNKSUF
111RGVIEWNAME = r$GVIEWNAME
112RGVIEWTARGET = $RGVIEWNAME$LNKSUF
113VIMDIFFNAME = $(VIMNAME)diff
114GVIMDIFFNAME = g$VIMDIFFNAME
115VIMDIFFTARGET = $VIMDIFFNAME$LNKSUF
116GVIMDIFFTARGET = $GVIMDIFFNAME$LNKSUF
117EVIMNAME = e$VIMNAME
118EVIMTARGET = $EVIMNAME$LNKSUF
119EVIEWNAME = e$VIEWNAME
120EVIEWTARGET = $EVIEWNAME$LNKSUF
121
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122#
123# G U I variant
124#
125# The GUI is selected by configure, a lot of other things depend on it.
126#
127:variant GUI
128 GTK
Bram Moolenaar1e015462005-09-25 22:16:38 +0000129 GUI_SRC = gui.c gui_gtk.c gui_gtk_x11.c pty.c gui_beval.c
130 gui_gtk_f.c
131 GUI_OBJ =
132 GUI_DEFS = -DFEAT_GUI_GTK $NARROW_PROTO
133 GUI_IPATH = $GUI_INC_LOC
134 GUI_LIBS_DIR = $GUI_LIB_LOC
135 GUI_LIBS1 =
136 GUI_LIBS2 = $GTK_LIBNAME
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000137 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000138 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000139 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000140 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000141 GUI_BUNDLE =
142 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143 MOTIF
Bram Moolenaar1e015462005-09-25 22:16:38 +0000144 GUI_SRC = gui.c gui_motif.c gui_x11.c pty.c gui_beval.c
145 gui_xmdlg.c gui_xmebw.c
146 GUI_OBJ =
147 GUI_DEFS = -DFEAT_GUI_MOTIF $NARROW_PROTO
148 GUI_IPATH = $GUI_INC_LOC
149 GUI_LIBS_DIR = $GUI_LIB_LOC
150 GUI_LIBS1 =
151 GUI_LIBS2 = $MOTIF_LIBNAME -lXt
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000152 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000153 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000154 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000155 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000156 GUI_BUNDLE =
157 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158 ATHENA
Bram Moolenaar1e015462005-09-25 22:16:38 +0000159 # XAW_LIB et al. can be overruled to use Xaw3d widgets
160 XAW_LIB ?= -lXaw
161 GUI_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c \
162 gui_at_sb.c gui_at_fs.c
163 GUI_OBJ =
164 GUI_DEFS = -DFEAT_GUI_ATHENA $NARROW_PROTO
165 GUI_IPATH = $GUI_INC_LOC
166 GUI_LIBS_DIR = $GUI_LIB_LOC
167 GUI_LIBS1 = $XAW_LIB
168 GUI_LIBS2 = -lXt
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000169 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000170 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000171 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000172 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000173 GUI_BUNDLE =
174 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175 NEXTAW
Bram Moolenaar1e015462005-09-25 22:16:38 +0000176 # XAW_LIB et al. can be overruled to use Xaw3d widgets
177 XAW_LIB ?= -lXaw
178 GUI_SRC = gui.c gui_athena.c gui_x11.c pty.c gui_beval.c
179 gui_at_fs.c
180 GUI_OBJ =
181 GUI_DEFS = -DFEAT_GUI_ATHENA -DFEAT_GUI_NEXTAW $NARROW_PROTO
182 GUI_IPATH = $GUI_INC_LOC
183 GUI_LIBS_DIR = $GUI_LIB_LOC
184 GUI_LIBS1 = $NEXTAW_LIB
185 GUI_LIBS2 = -lXt
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000186 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000187 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000188 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000189 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000190 GUI_BUNDLE =
191 GUI_TESTARG =
192 CARBONGUI
193 GUI_SRC = gui.c gui_mac.c pty.c
194 GUI_OBJ =
195 GUI_DEFS = -DFEAT_GUI_MAC -fno-common -fpascal-strings \
196 -Wall -Wno-unknown-pragmas -mdynamic-no-pic -pipe
197 GUI_IPATH = $GUI_INC_LOC
198 GUI_LIBS_DIR = $GUI_LIB_LOC
199 GUI_LIBS1 = -framework Carbon
200 GUI_LIBS2 =
201 GUI_INSTALL = install_macosx
202 GUI_TARGETS = installglinks
203 GUI_MAN_TARGETS = yes
204 GUI_TESTTARGET = gui
205 GUI_BUNDLE = gui_bundle
206 GUI_TESTARG = VIMPROG=../$(APPDIR)/Contents/MacOS/$(VIMTARGET)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207 PHOTONGUI
Bram Moolenaar1e015462005-09-25 22:16:38 +0000208 GUI_SRC = gui.c gui_photon.c pty.c
209 GUI_OBJ =
210 GUI_DEFS = -DFEAT_GUI_PHOTON
211 GUI_IPATH =
212 GUI_LIBS_DIR =
213 GUI_LIBS1 = -lph -lphexlib
214 GUI_LIBS2 =
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000215 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000216 GUI_TARGETS = installglinks
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000217 GUI_MAN_TARGETS = yes
Bram Moolenaar1e015462005-09-25 22:16:38 +0000218 GUI_TESTTARGET = gui
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000219 GUI_BUNDLE =
220 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221 *
Bram Moolenaar1e015462005-09-25 22:16:38 +0000222 GUI_SRC =
223 GUI_OBJ =
224 GUI_DEFS =
225 GUI_IPATH =
226 GUI_LIBS_DIR =
227 GUI_LIBS1 =
228 GUI_LIBS2 =
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000229 GUI_INSTALL = install_normal
Bram Moolenaar1e015462005-09-25 22:16:38 +0000230 GUI_TARGETS =
231 GUI_MAN_TARGETS =
232 GUI_TESTTARGET =
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000233 GUI_BUNDLE =
234 GUI_TESTARG =
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235
236
237PRE_DEFS = -Iproto -I. $DEFS $GUI_DEFS $GUI_IPATH $CPPFLAGS $?(EXTRA_IPATHS)
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000238POST_DEFS = $X_CFLAGS $MZSCHEME_CFLAGS $PERL_CFLAGS $PYTHON_CFLAGS $TCL_CFLAGS $RUBY_CFLAGS $?(EXTRA_DEFS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239CFLAGS = $PRE_DEFS $CONF_CFLAGS $?(PROFILE_CFLAGS) $POST_DEFS
240CPPFLAGS =
241
242ALL_LIB_DIRS = $GUI_LIBS_DIR $X_LIBS_DIR
243LDFLAGS = $ALL_LIB_DIRS $CONF_LDFLAGS
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000244LIBS = $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 +0000245
246Target = $VIMNAME
247
248# reconfig target also builds Vim (reconfiguration is handled above).
249reconfig {virtual}: $Target
250
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000251distclean: clean
252 :del {force} auto/config.h auto/config.aap
253 :del {force} auto/config.cache auto/config.status
254
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255
256# Execute the test scripts. Run these after compiling Vim, before installing.
257#
258# This will produce a lot of garbage on your screen, including a few error
259# messages. Don't worry about that.
260# If there is a real error, there will be a difference between "test.out" and
261# a "test99.ok" file.
262# If everything is allright, the final message will be "ALL DONE".
263#
264test check:
265 VimProg = ../$Target
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000266 :execute testdir/main.aap $GUI_TESTTARGET $GUI_TESTARG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267
268testclean {virtual}:
269 :del {force} testdir/*.out testdir/test.log
270
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271# When no fetch target exists we are not a child of the ../main.aap recipe,
272# Use ../main.aap to do the fetching.
273# --- If you get an error here for wrong number of arguments, you need to
274# update to a newer version of A-A-P.
275@if not has_target("fetch"):
276 fetch:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000277 :execute ../main.aap fetch
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278
279
280# All the source files that need to be compiled.
281# Some are optional and depend on configure.
282# "version.c" is missing, it's always compiled (see below).
283Source =
Bram Moolenaar1e015462005-09-25 22:16:38 +0000284 buffer.c
285 charset.c
286 diff.c
287 digraph.c
288 edit.c
289 eval.c
290 ex_cmds.c
291 ex_cmds2.c
292 ex_docmd.c
293 ex_eval.c
294 ex_getln.c
295 fileio.c
296 fold.c
297 getchar.c
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000298 hardcopy.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000299 hashtable.c
300 if_cscope.c
301 if_xcmdsrv.c
302 main.c
303 mark.c
304 memfile.c
305 memline.c
306 menu.c
307 message.c
308 misc1.c
309 misc2.c
310 move.c
311 mbyte.c
312 normal.c
313 ops.c
314 option.c
315 os_unix.c
316 auto/pathdef.c
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000317 popupmenu.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000318 quickfix.c
319 regexp.c
320 screen.c
321 search.c
322 spell.c
323 syntax.c
324 tag.c
325 term.c
326 ui.c
327 undo.c
328 window.c
329 $OS_EXTRA_SRC
330 $GUI_SRC
331 $HANGULIN_SRC
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000332 $MZSCHEME_SRC
Bram Moolenaar1e015462005-09-25 22:16:38 +0000333 $PERL_SRC
334 $NETBEANS_SRC
335 $PYTHON_SRC
336 $TCL_SRC
337 $RUBY_SRC
338 $SNIFF_SRC
339 $WORKSHOP_SRC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000341Objects =
Bram Moolenaar1e015462005-09-25 22:16:38 +0000342 $GUI_OBJ
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000343
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344# TODO: make is still used for subdirectories, need to write a recipe.
345MAKE ?= make
346
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000347all: $Target $GUI_BUNDLE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348
349# This dependency is required to build auto/osdef.h before automatic
350# dependencies are generated.
351$Source version.c : auto/osdef.h
352
353# Need to mention that the target also depends on version.c, since it's not
354# inluded in $Source
355$Target : version.c
356
357# Some sources are to be found in the "auto" directory.
358SRCPATH += auto
359
360# When building Vim always compile version.c to get the timestamp.
361:filetype
362 declare my_prog
363:attr {filetype = my_prog} $Target
364
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000365:program $Target : $Source $Objects
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366
367:action build my_prog object
Bram Moolenaar1e015462005-09-25 22:16:38 +0000368 version_obj = `src2obj("version.c")`
369 :do compile {target = $version_obj} version.c
370 #:do build {target = $target {filetype = program}} $source $version_obj
371 link_sed = $BDIR/link.sed
372 @if os.path.exists(link_sed):
373 :move {force} $link_sed auto/link.sed
374 @else:
375 :del {force} auto/link.sed
376 :update link2.sh
377 :sys LINK="$?(PURIFY) $?(SHRPENV) $CC $LDFLAGS \
378 -o $target $source $version_obj $LIBS" \
379 MAKE="aap" sh ./link2.sh
380 :copy {force} auto/link.sed $BDIR/link.sed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381
382# "link.sh" must be modified for A-A-P
383link2.sh : link.sh
384 :print Adjusting $-source for A-A-P.
385 :cat $source | :eval re.sub("objects/pathdef.o", "pathdef", stdin)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000386 >! $target
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387
388xxd/xxd$EXESUF: xxd/xxd.c
389 :sys cd xxd; CC="$CC" CFLAGS="$CPPFLAGS $CFLAGS" \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000390 $MAKE -f Makefile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391
392# Build the language specific files if they were unpacked.
393# Generate the converted .mo files separately, it's no problem if this fails.
394languages {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000395 @if _no.MAKEMO:
396 :sys cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix
397 @try:
398 :sys cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix converted
399 @except:
400 :print Generated converted language files failed, continuing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401
402# Update the *.po files for changes in the sources. Only run manually.
403update-po {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000404 cd $PODIR; CC="$CC" $MAKE prefix=$DESTDIR$prefix update-po
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405
406auto/if_perl.c: if_perl.xs
Bram Moolenaar1e015462005-09-25 22:16:38 +0000407 :sys $PERL -e 'unless ( $$] >= 5.005 ) { for (qw(na defgv errgv)) { print "#define PL_$$_ $$_\n" }}' > $target
408 :sys $PERL $PERLLIB/ExtUtils/xsubpp -prototypes -typemap \
409 $PERLLIB/ExtUtils/typemap if_perl.xs >> $target
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
411auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
Bram Moolenaar1e015462005-09-25 22:16:38 +0000412 :sys CC="$CC $CFLAGS" srcdir=$srcdir sh $srcdir/osdef.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413
414pathdef {virtual} : $BDIR/auto/pathdef$OBJSUF
415
416auto/pathdef.c: auto/config.aap
Bram Moolenaar1e015462005-09-25 22:16:38 +0000417 :print Creating $target
418 :print >! $target /* pathdef.c */
419 :print >> $target /* This file is automatically created by main.aap */
420 :print >> $target /* DO NOT EDIT! Change main.aap only. */
421 :print >> $target $#include "vim.h"
422 :print >> $target char_u *default_vim_dir = (char_u *)"$VIMRCLOC";
423 :print >> $target char_u *default_vimruntime_dir = (char_u *)"$?VIMRUNTIMEDIR";
424 v = $CC -c -I$srcdir $CFLAGS
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000425 @v = string.replace(v, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000426 :print >> $target char_u *all_cflags = (char_u *)"$v";
427 linkcmd = $CC $LDFLAGS -o $VIMTARGET $LIBS
428 link_sed = $BDIR/link.sed
429 @if os.path.exists(link_sed):
430 # filter $linkcmd through $BDIR/link.sed
431 :print $linkcmd | :syseval sed -f $link_sed | :eval re.sub("\n", "", stdin) | :assign linkcmd
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000432 @linkcmd = string.replace(linkcmd, '"', '\\"')
Bram Moolenaar1e015462005-09-25 22:16:38 +0000433 :print >> $target char_u *all_lflags = (char_u *)"$linkcmd";
434 @if _no.get("COMPILEDBY"):
435 who = $COMPILEDBY
436 where = ''
437 @else:
438 :syseval whoami | :eval re.sub("\n", "", stdin) | :assign who
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439
Bram Moolenaar1e015462005-09-25 22:16:38 +0000440 :syseval hostname | :eval re.sub("\n", "", stdin) | :assign where
441 :print >> $target char_u *compiled_user = (char_u *)"$who";
442 :print >> $target char_u *compiled_sys = (char_u *)"$where";
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
444
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445### Names of the tools that are also made
446TOOLS = xxd/xxd$EXESUF
447
448# Root of the installation tree. Empty for a normal install, set to an
449# existing path to install into a special place (for generating a package).
450DESTDIR ?=
451
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000452### Location of man pages under $MANTOPDIR
453MAN1DIR = /man1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000454
455### Location of Vim files (should not need to be changed, and
456### some things might not work when they are changed!)
457VIMDIR = /vim
458@r = re.compile('.*VIM_VERSION_NODOT\\s*"(vim\\d\\d[^"]*)".*', re.S)
459VIMRTDIR = /`r.match(open("version.h").read()).group(1)`
460HELPSUBDIR = /doc
461COLSUBDIR = /colors
462SYNSUBDIR = /syntax
463INDSUBDIR = /indent
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000464AUTOSUBDIR = /autoload
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465PLUGSUBDIR = /plugin
466FTPLUGSUBDIR = /ftplugin
467LANGSUBDIR = /lang
468COMPSUBDIR = /compiler
469KMAPSUBDIR = /keymap
470MACROSUBDIR = /macros
471TOOLSSUBDIR = /tools
472TUTORSUBDIR = /tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000473SPELLSUBDIR = /spell
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474PRINTSUBDIR = /print
475PODIR = po
476
Bram Moolenaar1e015462005-09-25 22:16:38 +0000477### VIMLOC common root of the Vim files (all versions)
478### VIMRTLOC common root of the runtime Vim files (this version)
479### VIMRCLOC compiled-in location for global [g]vimrc files (all versions)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000480### VIMRUNTIMEDIR compiled-in location for runtime files (optional)
Bram Moolenaar1e015462005-09-25 22:16:38 +0000481### HELPSUBLOC location for help files
482### COLSUBLOC location for colorscheme files
483### SYNSUBLOC location for syntax files
484### INDSUBLOC location for indent files
485### AUTOSUBLOC location for standard autoload files
486### PLUGSUBLOC location for standard plugin files
Bram Moolenaar071d4272004-06-13 20:20:40 +0000487### FTPLUGSUBLOC location for ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000488### LANGSUBLOC location for language files
489### COMPSUBLOC location for compiler files
490### KMAPSUBLOC location for keymap files
491### MACROSUBLOC location for macro files
492### TOOLSSUBLOC location for tools files
493### TUTORSUBLOC location for tutor files
494### PRINTSUBLOC location for print files
495### SCRIPTLOC location for script files (menu.vim, bugreport.vim, ..)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000496### You can override these if you want to install them somewhere else.
497### Edit feature.h for compile-time settings.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000498VIMLOC = $DATADIR$VIMDIR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000499@if not _no.get("VIMRTLOC"):
500 VIMRTLOC = $DATADIR$VIMDIR$VIMRTDIR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000501VIMRCLOC = $VIMLOC
502HELPSUBLOC = $VIMRTLOC$HELPSUBDIR
503COLSUBLOC = $VIMRTLOC$COLSUBDIR
504SYNSUBLOC = $VIMRTLOC$SYNSUBDIR
505INDSUBLOC = $VIMRTLOC$INDSUBDIR
506AUTOSUBLOC = $VIMRTLOC$AUTOSUBDIR
507PLUGSUBLOC = $VIMRTLOC$PLUGSUBDIR
508FTPLUGSUBLOC = $VIMRTLOC$FTPLUGSUBDIR
509LANGSUBLOC = $VIMRTLOC$LANGSUBDIR
510COMPSUBLOC = $VIMRTLOC$COMPSUBDIR
511KMAPSUBLOC = $VIMRTLOC$KMAPSUBDIR
512MACROSUBLOC = $VIMRTLOC$MACROSUBDIR
513TOOLSSUBLOC = $VIMRTLOC$TOOLSSUBDIR
514TUTORSUBLOC = $VIMRTLOC$TUTORSUBDIR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000515SPELLSUBLOC = $VIMRTLOC$SPELLSUBDIR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000516PRINTSUBLOC = $VIMRTLOC$PRINTSUBDIR
517SCRIPTLOC = $VIMRTLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000518
519### Only set VIMRUNTIMEDIR when VIMRTLOC is set to a different location and
520### the runtime directory is not below it.
521#VIMRUNTIMEDIR = $VIMRTLOC
522
523### Name of the evim file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000524EVIM_FILE = $DESTDIR$SCRIPTLOC/evim.vim
525MSWIN_FILE = $DESTDIR$SCRIPTLOC/mswin.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526
527### Name of the menu file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000528SYS_MENU_FILE = $DESTDIR$SCRIPTLOC/menu.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529SYS_SYNMENU_FILE = $DESTDIR$SCRIPTLOC/synmenu.vim
530SYS_DELMENU_FILE = $DESTDIR$SCRIPTLOC/delmenu.vim
531
532### Name of the bugreport file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000533SYS_BUGR_FILE = $DESTDIR$SCRIPTLOC/bugreport.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534
535### Name of the file type detection file target.
536SYS_FILETYPE_FILE = $DESTDIR$SCRIPTLOC/filetype.vim
537
538### Name of the file type detection file target.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000539SYS_FTOFF_FILE = $DESTDIR$SCRIPTLOC/ftoff.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540
541### Name of the file type detection script file target.
542SYS_SCRIPTS_FILE = $DESTDIR$SCRIPTLOC/scripts.vim
543
544### Name of the ftplugin-on file target.
545SYS_FTPLUGIN_FILE = $DESTDIR$SCRIPTLOC/ftplugin.vim
546
547### Name of the ftplugin-off file target.
548SYS_FTPLUGOF_FILE = $DESTDIR$SCRIPTLOC/ftplugof.vim
549
550### Name of the indent-on file target.
551SYS_INDENT_FILE = $DESTDIR$SCRIPTLOC/indent.vim
552
553### Name of the indent-off file target.
554SYS_INDOFF_FILE = $DESTDIR$SCRIPTLOC/indoff.vim
555
556### Name of the option window script file target.
557SYS_OPTWIN_FILE = $DESTDIR$SCRIPTLOC/optwin.vim
558
559### Permissions for binaries
560BINMOD = 755
561
562### Permissions for man page
563MANMOD = 644
564
565### Permissions for help files
566HELPMOD = 644
567
568### Permissions for Perl and shell scripts
569SCRIPTMOD = 755
570
571### Permission for Vim script files (menu.vim, bugreport.vim, ..)
572VIMSCRIPTMOD = 644
573
574### Permissions for all directories that are created
575DIRMOD = 755
576
577### Permissions for all other files that are created
578FILEMOD = 644
579
580# Where to copy the man and help files from
581HELPSOURCE = ../runtime/doc
582
583# Where to copy the script files from (menu, bugreport)
584SCRIPTSOURCE = ../runtime
585
586# Where to copy the colorscheme files from
587COLSOURCE = ../runtime/colors
588
589# Where to copy the syntax files from
590SYNSOURCE = ../runtime/syntax
591
592# Where to copy the indent files from
593INDSOURCE = ../runtime/indent
594
595# Where to copy the standard plugin files from
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000596AUTOSOURCE = ../runtime/autoload
597
598# Where to copy the standard plugin files from
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599PLUGSOURCE = ../runtime/plugin
600
601# Where to copy the ftplugin files from
602FTPLUGSOURCE = ../runtime/ftplugin
603
604# Where to copy the macro files from
605MACROSOURCE = ../runtime/macros
606
607# Where to copy the tools files from
608TOOLSSOURCE = ../runtime/tools
609
610# Where to copy the tutor files from
611TUTORSOURCE = ../runtime/tutor
612
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000613# Where to copy the spell files from
614SPELLSOURCE = ../runtime/spell
615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616# Where to look for language specific files
617LANGSOURCE = ../runtime/lang
618
619# Where to look for compiler files
620COMPSOURCE = ../runtime/compiler
621
622# Where to look for keymap files
623KMAPSOURCE = ../runtime/keymap
624
625# Where to look for print resource files
626PRINTSOURCE = ../runtime/print
627
628# abbreviations
629DEST_BIN = $DESTDIR$BINDIR
630DEST_VIM = $DESTDIR$VIMLOC
631DEST_RT = $DESTDIR$VIMRTLOC
632DEST_HELP = $DESTDIR$HELPSUBLOC
633DEST_COL = $DESTDIR$COLSUBLOC
634DEST_SYN = $DESTDIR$SYNSUBLOC
635DEST_IND = $DESTDIR$INDSUBLOC
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000636DEST_AUTO = $DESTDIR$AUTOSUBLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637DEST_PLUG = $DESTDIR$PLUGSUBLOC
638DEST_FTP = $DESTDIR$FTPLUGSUBLOC
639DEST_LANG = $DESTDIR$LANGSUBLOC
640DEST_COMP = $DESTDIR$COMPSUBLOC
641DEST_KMAP = $DESTDIR$KMAPSUBLOC
642DEST_MACRO = $DESTDIR$MACROSUBLOC
643DEST_TOOLS = $DESTDIR$TOOLSSUBLOC
644DEST_TUTOR = $DESTDIR$TUTORSUBLOC
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000645DEST_SPELL = $DESTDIR$SPELLSUBLOC
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646DEST_SCRIPT = $DESTDIR$SCRIPTLOC
647DEST_PRINT = $DESTDIR$PRINTSUBLOC
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000648DEST_MAN_TOP = $DESTDIR$?(MANDIR)
649
650# We assume that the ".../man/xx/man1/" directory is for latin1 manual pages.
651# Some systems use UTF-8, but these should find the ".../man/xx.UTF-8/man1/"
652# directory first.
653# FreeBSD uses ".../man/xx.ISO8859-1/man1" for latin1, use that one too.
654DEST_MAN = $(DEST_MAN_TOP)$(MAN1DIR)
655DEST_MAN_FR = $(DEST_MAN_TOP)/fr$(MAN1DIR)
656DEST_MAN_FR_I = $(DEST_MAN_TOP)/fr.ISO8859-1$(MAN1DIR)
657DEST_MAN_FR_U = $(DEST_MAN_TOP)/fr.UTF-8$(MAN1DIR)
658DEST_MAN_IT = $(DEST_MAN_TOP)/it$(MAN1DIR)
659DEST_MAN_IT_I = $(DEST_MAN_TOP)/it.ISO8859-1$(MAN1DIR)
660DEST_MAN_IT_U = $(DEST_MAN_TOP)/it.UTF-8$(MAN1DIR)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000661DEST_MAN_PL = $(DEST_MAN_TOP)/pl.ISO8859-2$(MAN1DIR)
662DEST_MAN_PL_U = $(DEST_MAN_TOP)/pl.UTF-8$(MAN1DIR)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000663DEST_MAN_RU = $(DEST_MAN_TOP)/ru.KOI8-R$(MAN1DIR)
664DEST_MAN_RU_U = $(DEST_MAN_TOP)/ru.UTF-8$(MAN1DIR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665
666# These are directories, create them when needed.
667:attr {directory = $DIRMOD} $DEST_BIN $DEST_VIM $DEST_RT $DEST_HELP $DEST_COL
Bram Moolenaar1e015462005-09-25 22:16:38 +0000668 $DEST_SYN $DEST_IND $DEST_AUTO $DEST_PLUG $DEST_FTP $DEST_LANG
669 $DEST_COMP $DEST_KMAP $DEST_MACRO $DEST_TOOLS $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000670 $DEST_SCRIPT $DEST_PRINT $DEST_MAN $DEST_SPELL
671 $DEST_MAN_FR $DEST_MAN_FR_I $DEST_MAN_FR_U $DEST_MAN_IT
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000672 $DEST_MAN_IT_I $DEST_MAN_IT_U
673 $DEST_MAN_PL $DEST_MAN_PL_U
674 $DEST_MAN_RU $DEST_MAN_RU_U
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675
676#
677# I N S T A L L
678#
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000679install: $GUI_INSTALL
680
681install_normal:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 @if not os.path.isdir(_no.DEST_BIN):
683 @try:
684 :mkdir $DEST_BIN
685 @except:
686 @ pass
687 @if os.access(_no.DEST_BIN, os.W_OK):
688 # Bin directory is writable, install directly.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000689 :update installvim installtools $INSTALL_LANGS install-icons
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690 @else:
691 # Bin directory is not writable, need to become root.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000692 :print The destination directory "$DEST_BIN" is not writable.
693 :print If this is the wrong directory, use PREFIX to specify another one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 :print Otherwise, type the root password to continue installing.
695 :asroot $AAP install
696
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000697installvim {virtual}: installvimbin installtutorbin \
698 installruntime installlinks installmanlinks
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699
700installvimbin {virtual}{force}: $Target $DEST_BIN
Bram Moolenaar1e015462005-09-25 22:16:38 +0000701 exe = $DEST_BIN/$VIMTARGET
702 @if os.path.exists(exe):
703 # Move the old executable aside and delete it. Any other method
704 # may cause a crash if the executable is currently being used.
705 :move {force} $exe $(exe).rm
706 :del {force} $(exe).rm
707 :copy $VIMTARGET $DEST_BIN
708 :do strip $exe
709 :chmod $BINMOD $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710# may create a link to the new executable from /usr/bin/vi
Bram Moolenaar1e015462005-09-25 22:16:38 +0000711 @if _no.get("LINKIT"):
712 :sys $LINKIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000714# Long list of arguments for the shell script that installs the manual pages
715# for one language.
716INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \
717 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME)
718
719# Install most of the runtime files
720installruntime {virtual}: installrtbase installmacros installtutor installspell
721
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722# install the help files; first adjust the contents for the location
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000723installrtbase {virtual}{force}: $HELPSOURCE/vim.1 $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000724 $DEST_RT $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
725 $DEST_FTP $DEST_AUTO $DEST_PLUG $DEST_TUTOR $DEST_COMP
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000726 $DEST_SPELL $DEST_PRINT
727 :sys ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728
729 :cd $HELPSOURCE
730 @try:
731 XTRA = `glob.glob("*.??x")` `glob.glob("tags-??")`
732 @except:
733 XTRA = # It's OK if there are no matches.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000734 :copy *.txt tags $XTRA $DEST_HELP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 :cd -
736 :cd $DEST_HELP
Bram Moolenaar1e015462005-09-25 22:16:38 +0000737 :chmod $HELPMOD *.txt tags $XTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738 :cd -
Bram Moolenaar1e015462005-09-25 22:16:38 +0000739 :copy $HELPSOURCE/*.pl $DEST_HELP
740 :chmod $SCRIPTMOD $DEST_HELP/*.pl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741# install the menu files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000742 :copy $SCRIPTSOURCE/menu.vim $SYS_MENU_FILE
743 :chmod $VIMSCRIPTMOD $SYS_MENU_FILE
744 :copy $SCRIPTSOURCE/synmenu.vim $SYS_SYNMENU_FILE
745 :chmod $VIMSCRIPTMOD $SYS_SYNMENU_FILE
746 :copy $SCRIPTSOURCE/delmenu.vim $SYS_DELMENU_FILE
747 :chmod $VIMSCRIPTMOD $SYS_DELMENU_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748# install the evim file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000749 :copy $SCRIPTSOURCE/mswin.vim $MSWIN_FILE
750 :chmod $VIMSCRIPTMOD $MSWIN_FILE
751 :copy $SCRIPTSOURCE/evim.vim $EVIM_FILE
752 :chmod $VIMSCRIPTMOD $EVIM_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753# install the bugreport file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000754 :copy $SCRIPTSOURCE/bugreport.vim $SYS_BUGR_FILE
755 :chmod $VIMSCRIPTMOD $SYS_BUGR_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000756# install the example vimrc files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000757 :copy $SCRIPTSOURCE/vimrc_example.vim $DEST_SCRIPT
758 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/vimrc_example.vim
759 :copy $SCRIPTSOURCE/gvimrc_example.vim $DEST_SCRIPT
760 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/gvimrc_example.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000761# install the file type detection files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000762 :copy $SCRIPTSOURCE/filetype.vim $SYS_FILETYPE_FILE
763 :chmod $VIMSCRIPTMOD $SYS_FILETYPE_FILE
764 :copy $SCRIPTSOURCE/ftoff.vim $SYS_FTOFF_FILE
765 :chmod $VIMSCRIPTMOD $SYS_FTOFF_FILE
766 :copy $SCRIPTSOURCE/scripts.vim $SYS_SCRIPTS_FILE
767 :chmod $VIMSCRIPTMOD $SYS_SCRIPTS_FILE
768 :copy $SCRIPTSOURCE/ftplugin.vim $SYS_FTPLUGIN_FILE
769 :chmod $VIMSCRIPTMOD $SYS_FTPLUGIN_FILE
770 :copy $SCRIPTSOURCE/ftplugof.vim $SYS_FTPLUGOF_FILE
771 :chmod $VIMSCRIPTMOD $SYS_FTPLUGOF_FILE
772 :copy $SCRIPTSOURCE/indent.vim $SYS_INDENT_FILE
773 :chmod $VIMSCRIPTMOD $SYS_INDENT_FILE
774 :copy $SCRIPTSOURCE/indoff.vim $SYS_INDOFF_FILE
775 :chmod $VIMSCRIPTMOD $SYS_INDOFF_FILE
776 :copy $SCRIPTSOURCE/optwin.vim $SYS_OPTWIN_FILE
777 :chmod $VIMSCRIPTMOD $SYS_OPTWIN_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778# install the print resource files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000779 :copy $PRINTSOURCE/*.ps $DEST_PRINT
780 :chmod $FILEMOD $DEST_PRINT/*.ps
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781# install the colorscheme files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000782 :copy $COLSOURCE/*.vim $COLSOURCE/README.txt $DEST_COL
783 :chmod $HELPMOD $DEST_COL/*.vim $DEST_COL/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784# install the syntax files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000785 :copy $SYNSOURCE/*.vim $SYNSOURCE/README.txt $DEST_SYN
786 :chmod $HELPMOD $DEST_SYN/*.vim $DEST_SYN/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787# install the indent files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000788 :copy $INDSOURCE/*.vim $INDSOURCE/README.txt $DEST_IND
789 :chmod $HELPMOD $DEST_IND/*.vim
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000790# install the standard autoload files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000791 :copy $AUTOSOURCE/*.vim $AUTOSOURCE/README.txt $DEST_AUTO
792 :chmod $HELPMOD $DEST_AUTO/*.vim $DEST_AUTO/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793# install the standard plugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000794 :copy $PLUGSOURCE/*.vim $PLUGSOURCE/README.txt $DEST_PLUG
795 :chmod $HELPMOD $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796# install the ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000797 :copy $FTPLUGSOURCE/*.vim $FTPLUGSOURCE/README.txt $DEST_FTP
798 :chmod $HELPMOD $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799# install the compiler files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000800 :copy $COMPSOURCE/*.vim $COMPSOURCE/README.txt $DEST_COMP
801 :chmod $HELPMOD $DEST_COMP/*.vim $DEST_COMP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
803installmacros {virtual}{force}: $MACROSOURCE $DEST_VIM $DEST_RT $DEST_MACRO
Bram Moolenaar1e015462005-09-25 22:16:38 +0000804 :copy {recursive}{force} $MACROSOURCE/* $DEST_MACRO
805 # Delete any CVS and AAPDIR directories.
806 # Use the ":tree" command if possible. It was added later, fall back
807 # to using "find" when it doesn't work.
808 @try:
809 :tree $DEST_MACRO {dirname = CVS}
810 :del {recursive} $name
811 :tree $DEST_MACRO {dirname = AAPDIR}
812 :del {recursive} $name
813 :tree $DEST_MACRO {dirname = .*}
814 :chmod $DIRMOD $name
815 :tree $DEST_MACRO {filename = .*}
816 :chmod $FILEMOD $name
817 @except:
818 @ ok, cvsdirs = redir_system('find %s -name CVS -print' % _no.DEST_MACRO)
819 @ if ok and cvsdirs:
820 :del {recursive} $cvsdirs
821 :sys chmod $DIRMOD ``find $DEST_MACRO -type d -print``
822 :sys chmod $FILEMOD ``find $DEST_MACRO -type f -print``
823 :chmod $SCRIPTMOD $DEST_MACRO/less.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824
825# install the tutor files
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000826installtutorbin {virtual}{force}: $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000827 :copy vimtutor $DEST_BIN/$(VIMNAME)tutor
828 :chmod $SCRIPTMOD $DEST_BIN/$(VIMNAME)tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000829
830installtutor {virtual}{force}: $DEST_RT $DEST_TUTOR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000831 :copy $TUTORSOURCE/tutor* $TUTORSOURCE/README* $DEST_TUTOR
832 :chmod $HELPMOD $DEST_TUTOR/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000834# Install the spell files, if they exist. This assumes at least the English
835# spell file is there.
836installspell {virtual}: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
837 enspl = $(SPELLSOURCE)/en.latin1.spl
838 @if os.path.exists(enspl):
839 :copy $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.vim $(DEST_SPELL)
840 :chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.vim
841 @try:
842 :copy $(SPELLSOURCE)/*.sug $(DEST_SPELL)
843 :chmod $(HELPMOD) $(DEST_SPELL)/*.sug
844 @except:
845 @ pass
846
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847# install helper program xxd
848installtools {virtual}{force}: $TOOLS $DEST_BIN $DEST_MAN \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000849 $TOOLSSOURCE $DEST_VIM $DEST_RT $DEST_TOOLS \
850 $INSTALL_TOOL_LANGS
Bram Moolenaar1e015462005-09-25 22:16:38 +0000851 xxd = $DEST_BIN/xxd$EXESUF
852 @if os.path.exists(xxd):
853 :move {force} $xxd $(xxd).rm
854 :del $(xxd).rm
855 :copy xxd/xxd$EXESUF $DEST_BIN
856 :do strip $DEST_BIN/xxd$EXESUF
857 :chmod $BINMOD $DEST_BIN/xxd$EXESUF
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000858 :sys ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS)
859#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860# install the runtime tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000861 @try:
862 @ if aap_has(":tree"):
863 # New method: copy everything and delete CVS and AAPDIR dirs
864 :copy {recursive} $TOOLSSOURCE/* $DEST_TOOLS
865 :tree $DEST_TOOLS {dirname = CVS}
866 :delete {recursive} $name
867 :tree $DEST_TOOLS {dirname = AAPDIR}
868 :delete {recursive} $name
869 @except:
870 # Old method: copy only specific files and directories.
871 :copy {recursive} $TOOLSSOURCE/README.txt $TOOLSSOURCE/[a-z]* $DEST_TOOLS
872 :chmod $FILEMOD $DEST_TOOLS/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873# replace the path in some tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000874 :progsearch perlpath perl
875 @if perlpath:
876 :cat $TOOLSSOURCE/efm_perl.pl |
877 :eval re.sub("/usr/bin/perl", perlpath, stdin)
878 >! $DEST_TOOLS/efm_perl.pl
879 @else:
880 :copy $TOOLSSOURCE/efm_perl.pl $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881
Bram Moolenaar1e015462005-09-25 22:16:38 +0000882 :progsearch awkpath nawk gawk awk
883 @if awkpath:
884 :cat $TOOLSSOURCE/mve.awk |
885 :eval re.sub("/usr/bin/nawk", awkpath, stdin)
886 >! $DEST_TOOLS/mve.awk
887 @else:
888 :copy $TOOLSSOURCE/mve.awk $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889
Bram Moolenaar1e015462005-09-25 22:16:38 +0000890 :sys chmod $SCRIPTMOD ``grep -l "^#!" $DEST_TOOLS/*``
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000892# install the language specific files for tools, if they were unpacked
893install-tool-languages:
894 :sys ./installman.sh xxd $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
895 :sys ./installman.sh xxd $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
896 :sys ./installman.sh xxd $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
897 :sys ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
898 :sys ./installman.sh xxd $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
899 :sys ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000900 :sys ./installman.sh xxd $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
901 :sys ./installman.sh xxd $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000902 :sys ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
903 :sys ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
904
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905# install the language specific files, if they were unpacked
906install-languages {virtual}{force}: languages $DEST_LANG $DEST_KMAP
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000907 :sys ./installman.sh install $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
908 :sys ./installman.sh install $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
909 :sys ./installman.sh install $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
910 :sys ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
911 :sys ./installman.sh install $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
912 :sys ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000913 :sys ./installman.sh install $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
914 :sys ./installman.sh install $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000915 :sys ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
916 :sys ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
917 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
918 $(DEST_MAN_FR) $(INSTALLMLARGS)
919 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
920 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
921 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
922 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
923 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
924 $(DEST_MAN_IT) $(INSTALLMLARGS)
925 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
926 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
927 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
928 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
929 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000930 $(DEST_MAN_PL) $(INSTALLMLARGS)
931 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
932 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
933 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000934 $(DEST_MAN_RU) $(INSTALLMLARGS)
935 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
936 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
937
Bram Moolenaar1e015462005-09-25 22:16:38 +0000938 @if _no.MAKEMO:
939 :sys cd $PODIR; $MAKE prefix=$DESTDIR$prefix \
940 LOCALEDIR=$DEST_LANG INSTALL_DATA=cp FILEMOD=$FILEMOD install
941 @if os.path.exists(_no.LANGSOURCE):
942 :print installing language files
943 :copy $LANGSOURCE/README.txt $LANGSOURCE/*.vim $DEST_LANG
944 :chmod $FILEMOD $DEST_LANG/*.vim
945 @if os.path.exists(_no.KMAPSOURCE):
946 :copy $KMAPSOURCE/README.txt $KMAPSOURCE/*.vim $DEST_KMAP
947 :chmod $FILEMOD $DEST_KMAP/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949# install the icons for KDE, if the directory exists and the icon doesn't.
950ICON48PATH = $DESTDIR$DATADIR/icons/hicolor/48x48/apps
951ICON32PATH = $DESTDIR$DATADIR/icons/locolor/32x32/apps
952ICON16PATH = $DESTDIR$DATADIR/icons/locolor/16x16/apps
953KDEPATH = $HOME/.kde/share/icons
954install-icons {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000955 gp = $ICON48PATH/gvim.png
956 @if os.path.isdir(_no.ICON48PATH) and not os.path.exists(gp):
957 :copy $SCRIPTSOURCE/vim48x48.png $gp
958 gp = $ICON32PATH/gvim.png
959 @if os.path.isdir(_no.ICON32PATH) and not os.path.exists(gp):
960 :copy $SCRIPTSOURCE/vim32x32.png $gp
961 gp = $ICON16PATH/gvim.png
962 @if os.path.isdir(_no.ICON16PATH) and not os.path.exists(gp):
963 :copy $SCRIPTSOURCE/vim16x16.png $gp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964
965
966$HELPSOURCE/vim.1 $MACROSOURCE $TOOLSSOURCE:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000967 @if not os.path.exists(_no.TOOLSSOURCE):
968 :print Runtime files not found.
969 :error You need to unpack the runtime archive before running "make install".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970
971# create links from various names to vim. This is only done when the links
972# (or executables with the same name) don't exist yet.
973installlinks {virtual}: $GUI_TARGETS \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000974 $DEST_BIN/$EXTARGET \
975 $DEST_BIN/$VIEWTARGET \
976 $DEST_BIN/$RVIMTARGET \
977 $DEST_BIN/$RVIEWTARGET \
978 $INSTALLVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979
980installglinks {virtual}: $DEST_BIN/$GVIMTARGET \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000981 $DEST_BIN/$GVIEWTARGET \
982 $DEST_BIN/$RGVIMTARGET \
983 $DEST_BIN/$RGVIEWTARGET \
984 $DEST_BIN/$EVIMTARGET \
985 $DEST_BIN/$EVIEWTARGET \
986 $INSTALLGVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987
988installvimdiff {virtual}: $DEST_BIN/$VIMDIFFTARGET
989installgvimdiff {virtual}: $DEST_BIN/$GVIMDIFFTARGET
990
991# These dependencies use an empty buildcheck so that they are only done when
992# the target doesn't exist.
993$DEST_BIN/$EXTARGET: {buildcheck = }
994 :sys cd $DEST_BIN; ln -s $VIMTARGET $EXTARGET
995
996$DEST_BIN/$VIEWTARGET: {buildcheck = }
997 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIEWTARGET
998
999$DEST_BIN/$GVIMTARGET: {buildcheck = }
1000 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMTARGET
1001
1002$DEST_BIN/$GVIEWTARGET: {buildcheck = }
1003 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIEWTARGET
1004
1005$DEST_BIN/$RVIMTARGET: {buildcheck = }
1006 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIMTARGET
1007
1008$DEST_BIN/$RVIEWTARGET: {buildcheck = }
1009 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIEWTARGET
1010
1011$DEST_BIN/$RGVIMTARGET: {buildcheck = }
1012 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIMTARGET
1013
1014$DEST_BIN/$RGVIEWTARGET: {buildcheck = }
1015 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIEWTARGET
1016
1017$DEST_BIN/$VIMDIFFTARGET: {buildcheck = }
1018 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIMDIFFTARGET
1019
1020$DEST_BIN/$GVIMDIFFTARGET: {buildcheck = }
1021 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMDIFFTARGET
1022
1023$DEST_BIN/$EVIMTARGET: {buildcheck = }
1024 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIMTARGET
1025
1026$DEST_BIN/$EVIEWTARGET: {buildcheck = }
1027 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIEWTARGET
1028
Bram Moolenaar1e015462005-09-25 22:16:38 +00001029# create links for the manual pages with various names to vim. This is only
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030# done when the links (or manpages with the same name) don't exist yet.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001031INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \
1032 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \
1033 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \
1034 $(GVIMDIFFNAME) $(EVIEWNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001036installmanlinks {virtual}:
1037 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
1038 $(DEST_MAN) $(INSTALLMLARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
1040#
1041# U N I N S T A L L
1042#
1043uninstall {virtual}{force}: uninstall_runtime
1044 :del {force} $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 :del {force} $DEST_BIN/vimtutor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 :del {force} $DEST_BIN/$EXTARGET $DEST_BIN/$VIEWTARGET
1047 :del {force} $DEST_BIN/$GVIMTARGET $DEST_BIN/$GVIEWTARGET
1048 :del {force} $DEST_BIN/$RVIMTARGET $DEST_BIN/$RVIEWTARGET
1049 :del {force} $DEST_BIN/$RGVIMTARGET $DEST_BIN/$RGVIEWTARGET
1050 :del {force} $DEST_BIN/$VIMDIFFTARGET $DEST_BIN/$GVIMDIFFTARGET
1051 :del {force} $DEST_BIN/$EVIMTARGET $DEST_BIN/$EVIEWTARGET
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001052 :del {force} $DEST_BIN/xxd$EXESUF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053
1054# Note: "deldir" will fail if any files were added after "make install", that
1055# is intentionally: Keep files the user added.
1056uninstall_runtime {virtual}{force}:
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001057 :sys ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS)
1058 :sys ./installman.sh uninstall $(DEST_MAN_FR) "" $(INSTALLMANARGS)
1059 :sys ./installman.sh uninstall $(DEST_MAN_FR_I) "" $(INSTALLMANARGS)
1060 :sys ./installman.sh uninstall $(DEST_MAN_FR_U) "" $(INSTALLMANARGS)
1061 :sys ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS)
1062 :sys ./installman.sh uninstall $(DEST_MAN_IT_I) "" $(INSTALLMANARGS)
1063 :sys ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001064 :sys ./installman.sh uninstall $(DEST_MAN_PL) "" $(INSTALLMANARGS)
1065 :sys ./installman.sh uninstall $(DEST_MAN_PL_U) "" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001066 :sys ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS)
1067 :sys ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS)
1068 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1069 $(DEST_MAN) $(INSTALLMLARGS)
1070 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1071 $(DEST_MAN_FR) $(INSTALLMLARGS)
1072 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1073 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
1074 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1075 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
1076 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1077 $(DEST_MAN_IT) $(INSTALLMLARGS)
1078 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1079 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
1080 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1081 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
1082 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001083 $(DEST_MAN_PL) $(INSTALLMLARGS)
1084 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1085 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
1086 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001087 $(DEST_MAN_RU) $(INSTALLMLARGS)
1088 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1089 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
1090 :del {force} $DEST_MAN/xxd.1
1091 :del {force} $(DEST_MAN_FR)/xxd.1 $(DEST_MAN_FR_I)/xxd.1 $(DEST_MAN_FR_U)/xxd.1
1092 :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 +00001093 :del {force} $(DEST_MAN_PL)/xxd.1 $(DEST_MAN_PL_U)/xxd.1
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001094 :del {force} $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1
1095
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 :del {force} $DEST_HELP/*.txt $DEST_HELP/tags $DEST_HELP/*.pl
1097 :del {force} $SYS_MENU_FILE $SYS_SYNMENU_FILE $SYS_DELMENU_FILE
1098 :del {force} $SYS_BUGR_FILE $EVIM_FILE $MSWIN_FILE
1099 :del {force} $DEST_SCRIPT/gvimrc_example.vim $DEST_SCRIPT/vimrc_example.vim
1100 :del {force} $SYS_FILETYPE_FILE $SYS_FTOFF_FILE $SYS_SCRIPTS_FILE
1101 :del {force} $SYS_INDOFF_FILE $SYS_INDENT_FILE
1102 :del {force} $SYS_FTPLUGOF_FILE $SYS_FTPLUGIN_FILE
1103 :del {force} $SYS_OPTWIN_FILE
1104 :del {force} $DEST_COL/*.vim $DEST_COL/README.txt
1105 :del {force} $DEST_SYN/*.vim $DEST_SYN/README.txt
1106 :del {force} $DEST_IND/*.vim $DEST_IND/README.txt
1107 :del {force} $DEST_PRINT/*.ps
1108 :del {force}{recursive} $DEST_MACRO
1109 :del {force}{recursive} $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001110 :del {force}{recursive} $DEST_SPELL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 :del {force}{recursive} $DEST_TOOLS
1112 :del {force}{recursive} $DEST_LANG
1113 :del {force}{recursive} $DEST_KMAP
1114 :del {force}{recursive} $DEST_COMP
1115 :deldir {force} $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
1116 :del {force}{recursive} $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001117 :del {force} $DEST_AUTO/*.vim $DEST_AUTO/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 :del {force} $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar87e25fd2005-07-27 21:13:01 +00001119 :deldir {force} $DEST_FTP $DEST_AUTO $DEST_PLUG $DEST_PRINT $DEST_RT
Bram Moolenaar1e015462005-09-25 22:16:38 +00001120# This will fail when other Vim versions are installed, no worries.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 @try:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001122 :deldir $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001123 @except:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001124 :print Cannot delete $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001126###############################################################################
1127### MacOS X installation
1128###
1129### This installs a runnable Vim.app in $(prefix)
1130
1131REZ = /Developer/Tools/Rez
1132RESDIR = $(APPDIR)/Contents/Resources
1133@r = re.compile('.*VIM_VERSION_SHORT\\s*"(\\d[^"]*)".*', re.S)
1134VERSION = /`r.match(open("version.h").read()).group(1)`
1135ICON_APP = gui_mac.icns
1136
1137### Common flags
1138M4FLAGSX = $?(M4FLAGS) -DAPP_EXE=$(VIMNAME) -DAPP_NAME=$(VIMNAME) \
1139 -DAPP_VER=$(VERSION) -DICON_APP=$(ICON_APP)
1140
1141### Icons
1142ICONS = $(RESDIR)/$(ICON_APP)
1143
1144:attr {directory = $DIRMOD} $RESDIR
1145
1146# If you uncomment the following lines the *.icns in the src directory will be
1147# detected by this Makefile automatically, and used for Vim.
1148#ICON_APP = $(shell if [ -e app.icns ] ; then echo app.icns ; else echo gui_mac.icns ; fi)
1149#ICON_DOC = $(shell if [ -e doc.icns ] ; then echo doc.icns ; else echo ; fi)
1150#ICON_DOCTXT = $(shell if [ -e doc-txt.icns ] ; then echo doc-txt.icns ; else echo ; fi)
1151#ICONS = $(addprefix $(RESDIR)/, $(ICON_APP) $(ICON_DOC) $(ICON_DOCTXT))
1152
1153install_macosx {virtual}: gui_bundle
1154# Remove the link to the runtime dir, don't want to copy all of that.
1155 :delete {force} $(RESDIR)/vim/runtime
1156 :copy {r} $APPDIR $DESTDIR$prefix
1157 :tree $DESTDIR$prefix {dirname = AAPDIR}
1158 :delete {recursive} $name
1159# Install the runtime files. Recursive!
1160 :mkdir {r}{f} $DESTDIR$prefix/$RESDIR/vim/runtime
1161# :mkdir $(DESTDIR)$(prefix)/$(APPDIR)/bin
1162 :execute main.aap PREFIX=$DESTDIR$prefix/$RESDIR/vim VIMRTLOC=$DESTDIR$prefix/$RESDIR/vim/runtime installruntime
1163# Put the link back.
1164 :symlink `os.getcwd()`/../runtime $RESDIR/vim/runtime
1165# TODO: Create the vimtutor application.
1166
1167gui_bundle {virtual}: $(RESDIR) bundle-dir bundle-executable bundle-info \
1168 bundle-resource bundle-language
1169
1170bundle-dir {virtual}: $(APPDIR)/Contents $(VIMTARGET)
1171# Make a link to the runtime directory, so that we can try out the executable
1172# without installing it.
1173 :mkdir {r}{f} $(RESDIR)/vim
1174 :symlink {quiet} `os.getcwd()`/../runtime $(RESDIR)/vim/runtime
1175
1176bundle-executable {virtual}: $(VIMTARGET)
1177 :mkdir {r}{f} $(APPDIR)/Contents/MacOS
1178 :copy $(VIMTARGET) $(APPDIR)/Contents/MacOS/$(VIMTARGET)
1179
1180bundle-info {virtual}: bundle-dir
1181 :print Creating PkgInfo
1182 :print "APPLVIM!" >! $(APPDIR)/Contents/PkgInfo
1183 :print Creating Info.plist
1184 :sys m4 $(M4FLAGSX) infplist.xml > $(APPDIR)/Contents/Info.plist
1185
1186bundle-resource {virtual}: bundle-dir bundle-icons bundle-rsrc
1187
1188bundle-icons {virtual}: $ICONS
1189
1190### Classic resources
1191# Resource fork (in the form of a .rsrc file) for Classic Vim (Mac OS 9)
1192# This file is also required for OS X Vim.
1193bundle-rsrc {virtual}: os_mac.rsr.hqx
1194 :print Creating resource fork
1195 :sys python dehqx.py $source
1196 :del {force} gui_mac.rsrc
1197 :move gui_mac.rsrc.rsrcfork $(RESDIR)/$(VIMNAME).rsrc
1198
1199# po/Make_osx.pl says something about generating a Mac message file
1200# for Ukrananian. Would somebody using Mac OS X in Ukranian
1201# *really* be upset that Carbon Vim was not localised in
1202# Ukranian?
1203#
1204#bundle-language: bundle-dir po/Make_osx.pl
1205# cd po && perl Make_osx.pl --outdir ../$(RESDIR) $(MULTILANG)
1206bundle-language {virtual}: bundle-dir
1207
1208$(APPDIR)/Contents:
1209 :mkdir {r} $(APPDIR)/Contents/MacOS
1210 :mkdir {r} $(RESDIR)/English.lproj
1211
1212$ICONS: $ICON_APP
1213 :copy $source $target
1214
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215
1216# vim: sts=4 sw=4 :