blob: 3700edd98d9291a371dbed5e9e678b10165e4c8c [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 Moolenaar607a95ed2006-03-28 20:57:42 +0000299 hashtab.c
Bram Moolenaar1e015462005-09-25 22:16:38 +0000300 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 Moolenaar607a95ed2006-03-28 20:57:42 +0000317 popupmnu.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 Moolenaar18144c82006-04-12 21:52:12 +0000668 $DEST_SYN $DEST_IND $DEST_AUTO $DEST_AUTO/xml $DEST_PLUG
669 $DEST_FTP $DEST_LANG
Bram Moolenaar1e015462005-09-25 22:16:38 +0000670 $DEST_COMP $DEST_KMAP $DEST_MACRO $DEST_TOOLS $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000671 $DEST_SCRIPT $DEST_PRINT $DEST_MAN $DEST_SPELL
672 $DEST_MAN_FR $DEST_MAN_FR_I $DEST_MAN_FR_U $DEST_MAN_IT
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000673 $DEST_MAN_IT_I $DEST_MAN_IT_U
674 $DEST_MAN_PL $DEST_MAN_PL_U
675 $DEST_MAN_RU $DEST_MAN_RU_U
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676
677#
678# I N S T A L L
679#
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000680install: $GUI_INSTALL
681
682install_normal:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 @if not os.path.isdir(_no.DEST_BIN):
684 @try:
685 :mkdir $DEST_BIN
686 @except:
687 @ pass
688 @if os.access(_no.DEST_BIN, os.W_OK):
689 # Bin directory is writable, install directly.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000690 :update installvim installtools $INSTALL_LANGS install-icons
Bram Moolenaar071d4272004-06-13 20:20:40 +0000691 @else:
692 # Bin directory is not writable, need to become root.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000693 :print The destination directory "$DEST_BIN" is not writable.
694 :print If this is the wrong directory, use PREFIX to specify another one.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 :print Otherwise, type the root password to continue installing.
696 :asroot $AAP install
697
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000698installvim {virtual}: installvimbin installtutorbin \
699 installruntime installlinks installmanlinks
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700
701installvimbin {virtual}{force}: $Target $DEST_BIN
Bram Moolenaar1e015462005-09-25 22:16:38 +0000702 exe = $DEST_BIN/$VIMTARGET
703 @if os.path.exists(exe):
704 # Move the old executable aside and delete it. Any other method
705 # may cause a crash if the executable is currently being used.
706 :move {force} $exe $(exe).rm
707 :del {force} $(exe).rm
708 :copy $VIMTARGET $DEST_BIN
709 :do strip $exe
710 :chmod $BINMOD $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711# may create a link to the new executable from /usr/bin/vi
Bram Moolenaar1e015462005-09-25 22:16:38 +0000712 @if _no.get("LINKIT"):
713 :sys $LINKIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000715# Long list of arguments for the shell script that installs the manual pages
716# for one language.
717INSTALLMANARGS = $(VIMLOC) $(SCRIPTLOC) $(VIMRCLOC) $(HELPSOURCE) $(MANMOD) \
718 $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME)
719
720# Install most of the runtime files
721installruntime {virtual}: installrtbase installmacros installtutor installspell
722
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723# install the help files; first adjust the contents for the location
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000724installrtbase {virtual}{force}: $HELPSOURCE/vim.1 $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000725 $DEST_RT $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
Bram Moolenaar18144c82006-04-12 21:52:12 +0000726 $DEST_FTP $DEST_AUTO $DEST_AUTO/xml $DEST_PLUG $DEST_TUTOR
727 $DEST_COMP $DEST_SPELL $DEST_PRINT
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000728 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000729 :sys ./installman.sh install $(DEST_MAN) "" $(INSTALLMANARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730
731 :cd $HELPSOURCE
732 @try:
733 XTRA = `glob.glob("*.??x")` `glob.glob("tags-??")`
734 @except:
735 XTRA = # It's OK if there are no matches.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000736 :copy *.txt tags $XTRA $DEST_HELP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737 :cd -
738 :cd $DEST_HELP
Bram Moolenaar1e015462005-09-25 22:16:38 +0000739 :chmod $HELPMOD *.txt tags $XTRA
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 :cd -
Bram Moolenaar1e015462005-09-25 22:16:38 +0000741 :copy $HELPSOURCE/*.pl $DEST_HELP
742 :chmod $SCRIPTMOD $DEST_HELP/*.pl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743# install the menu files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000744 :copy $SCRIPTSOURCE/menu.vim $SYS_MENU_FILE
745 :chmod $VIMSCRIPTMOD $SYS_MENU_FILE
746 :copy $SCRIPTSOURCE/synmenu.vim $SYS_SYNMENU_FILE
747 :chmod $VIMSCRIPTMOD $SYS_SYNMENU_FILE
748 :copy $SCRIPTSOURCE/delmenu.vim $SYS_DELMENU_FILE
749 :chmod $VIMSCRIPTMOD $SYS_DELMENU_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750# install the evim file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000751 :copy $SCRIPTSOURCE/mswin.vim $MSWIN_FILE
752 :chmod $VIMSCRIPTMOD $MSWIN_FILE
753 :copy $SCRIPTSOURCE/evim.vim $EVIM_FILE
754 :chmod $VIMSCRIPTMOD $EVIM_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755# install the bugreport file
Bram Moolenaar1e015462005-09-25 22:16:38 +0000756 :copy $SCRIPTSOURCE/bugreport.vim $SYS_BUGR_FILE
757 :chmod $VIMSCRIPTMOD $SYS_BUGR_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758# install the example vimrc files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000759 :copy $SCRIPTSOURCE/vimrc_example.vim $DEST_SCRIPT
760 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/vimrc_example.vim
761 :copy $SCRIPTSOURCE/gvimrc_example.vim $DEST_SCRIPT
762 :chmod $VIMSCRIPTMOD $DEST_SCRIPT/gvimrc_example.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763# install the file type detection files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000764 :copy $SCRIPTSOURCE/filetype.vim $SYS_FILETYPE_FILE
765 :chmod $VIMSCRIPTMOD $SYS_FILETYPE_FILE
766 :copy $SCRIPTSOURCE/ftoff.vim $SYS_FTOFF_FILE
767 :chmod $VIMSCRIPTMOD $SYS_FTOFF_FILE
768 :copy $SCRIPTSOURCE/scripts.vim $SYS_SCRIPTS_FILE
769 :chmod $VIMSCRIPTMOD $SYS_SCRIPTS_FILE
770 :copy $SCRIPTSOURCE/ftplugin.vim $SYS_FTPLUGIN_FILE
771 :chmod $VIMSCRIPTMOD $SYS_FTPLUGIN_FILE
772 :copy $SCRIPTSOURCE/ftplugof.vim $SYS_FTPLUGOF_FILE
773 :chmod $VIMSCRIPTMOD $SYS_FTPLUGOF_FILE
774 :copy $SCRIPTSOURCE/indent.vim $SYS_INDENT_FILE
775 :chmod $VIMSCRIPTMOD $SYS_INDENT_FILE
776 :copy $SCRIPTSOURCE/indoff.vim $SYS_INDOFF_FILE
777 :chmod $VIMSCRIPTMOD $SYS_INDOFF_FILE
778 :copy $SCRIPTSOURCE/optwin.vim $SYS_OPTWIN_FILE
779 :chmod $VIMSCRIPTMOD $SYS_OPTWIN_FILE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780# install the print resource files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000781 :copy $PRINTSOURCE/*.ps $DEST_PRINT
782 :chmod $FILEMOD $DEST_PRINT/*.ps
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783# install the colorscheme files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000784 :copy $COLSOURCE/*.vim $COLSOURCE/README.txt $DEST_COL
785 :chmod $HELPMOD $DEST_COL/*.vim $DEST_COL/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786# install the syntax files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000787 :copy $SYNSOURCE/*.vim $SYNSOURCE/README.txt $DEST_SYN
788 :chmod $HELPMOD $DEST_SYN/*.vim $DEST_SYN/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789# install the indent files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000790 :copy $INDSOURCE/*.vim $INDSOURCE/README.txt $DEST_IND
791 :chmod $HELPMOD $DEST_IND/*.vim
Bram Moolenaar87e25fd2005-07-27 21:13:01 +0000792# install the standard autoload files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000793 :copy $AUTOSOURCE/*.vim $AUTOSOURCE/README.txt $DEST_AUTO
794 :chmod $HELPMOD $DEST_AUTO/*.vim $DEST_AUTO/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +0000795 :copy $AUTOSOURCE/xml/*.vim $DEST_AUTO/xml
796 :chmod $HELPMOD $DEST_AUTO/xml/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797# install the standard plugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000798 :copy $PLUGSOURCE/*.vim $PLUGSOURCE/README.txt $DEST_PLUG
799 :chmod $HELPMOD $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800# install the ftplugin files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000801 :copy $FTPLUGSOURCE/*.vim $FTPLUGSOURCE/README.txt $DEST_FTP
802 :chmod $HELPMOD $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803# install the compiler files
Bram Moolenaar1e015462005-09-25 22:16:38 +0000804 :copy $COMPSOURCE/*.vim $COMPSOURCE/README.txt $DEST_COMP
805 :chmod $HELPMOD $DEST_COMP/*.vim $DEST_COMP/README.txt
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806
807installmacros {virtual}{force}: $MACROSOURCE $DEST_VIM $DEST_RT $DEST_MACRO
Bram Moolenaar1e015462005-09-25 22:16:38 +0000808 :copy {recursive}{force} $MACROSOURCE/* $DEST_MACRO
809 # Delete any CVS and AAPDIR directories.
810 # Use the ":tree" command if possible. It was added later, fall back
811 # to using "find" when it doesn't work.
812 @try:
813 :tree $DEST_MACRO {dirname = CVS}
814 :del {recursive} $name
815 :tree $DEST_MACRO {dirname = AAPDIR}
816 :del {recursive} $name
817 :tree $DEST_MACRO {dirname = .*}
818 :chmod $DIRMOD $name
819 :tree $DEST_MACRO {filename = .*}
820 :chmod $FILEMOD $name
821 @except:
822 @ ok, cvsdirs = redir_system('find %s -name CVS -print' % _no.DEST_MACRO)
823 @ if ok and cvsdirs:
824 :del {recursive} $cvsdirs
825 :sys chmod $DIRMOD ``find $DEST_MACRO -type d -print``
826 :sys chmod $FILEMOD ``find $DEST_MACRO -type f -print``
827 :chmod $SCRIPTMOD $DEST_MACRO/less.sh
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828
829# install the tutor files
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000830installtutorbin {virtual}{force}: $DEST_VIM
Bram Moolenaar1e015462005-09-25 22:16:38 +0000831 :copy vimtutor $DEST_BIN/$(VIMNAME)tutor
832 :chmod $SCRIPTMOD $DEST_BIN/$(VIMNAME)tutor
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000833
834installtutor {virtual}{force}: $DEST_RT $DEST_TUTOR
Bram Moolenaar1e015462005-09-25 22:16:38 +0000835 :copy $TUTORSOURCE/tutor* $TUTORSOURCE/README* $DEST_TUTOR
836 :chmod $HELPMOD $DEST_TUTOR/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000838# Install the spell files, if they exist. This assumes at least the English
839# spell file is there.
840installspell {virtual}: $(DEST_VIM) $(DEST_RT) $(DEST_SPELL)
841 enspl = $(SPELLSOURCE)/en.latin1.spl
842 @if os.path.exists(enspl):
843 :copy $(SPELLSOURCE)/*.spl $(SPELLSOURCE)/*.vim $(DEST_SPELL)
844 :chmod $(HELPMOD) $(DEST_SPELL)/*.spl $(DEST_SPELL)/*.vim
845 @try:
846 :copy $(SPELLSOURCE)/*.sug $(DEST_SPELL)
847 :chmod $(HELPMOD) $(DEST_SPELL)/*.sug
848 @except:
849 @ pass
850
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851# install helper program xxd
852installtools {virtual}{force}: $TOOLS $DEST_BIN $DEST_MAN \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000853 $TOOLSSOURCE $DEST_VIM $DEST_RT $DEST_TOOLS \
854 $INSTALL_TOOL_LANGS
Bram Moolenaar1e015462005-09-25 22:16:38 +0000855 xxd = $DEST_BIN/xxd$EXESUF
856 @if os.path.exists(xxd):
857 :move {force} $xxd $(xxd).rm
858 :del $(xxd).rm
859 :copy xxd/xxd$EXESUF $DEST_BIN
860 :do strip $DEST_BIN/xxd$EXESUF
861 :chmod $BINMOD $DEST_BIN/xxd$EXESUF
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000862 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000863 :sys ./installman.sh xxd $(DEST_MAN) "" $(INSTALLMANARGS)
864#
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865# install the runtime tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000866 @try:
867 @ if aap_has(":tree"):
868 # New method: copy everything and delete CVS and AAPDIR dirs
869 :copy {recursive} $TOOLSSOURCE/* $DEST_TOOLS
870 :tree $DEST_TOOLS {dirname = CVS}
871 :delete {recursive} $name
872 :tree $DEST_TOOLS {dirname = AAPDIR}
873 :delete {recursive} $name
874 @except:
875 # Old method: copy only specific files and directories.
876 :copy {recursive} $TOOLSSOURCE/README.txt $TOOLSSOURCE/[a-z]* $DEST_TOOLS
877 :chmod $FILEMOD $DEST_TOOLS/*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878# replace the path in some tools
Bram Moolenaar1e015462005-09-25 22:16:38 +0000879 :progsearch perlpath perl
880 @if perlpath:
881 :cat $TOOLSSOURCE/efm_perl.pl |
882 :eval re.sub("/usr/bin/perl", perlpath, stdin)
883 >! $DEST_TOOLS/efm_perl.pl
884 @else:
885 :copy $TOOLSSOURCE/efm_perl.pl $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886
Bram Moolenaar1e015462005-09-25 22:16:38 +0000887 :progsearch awkpath nawk gawk awk
888 @if awkpath:
889 :cat $TOOLSSOURCE/mve.awk |
890 :eval re.sub("/usr/bin/nawk", awkpath, stdin)
891 >! $DEST_TOOLS/mve.awk
892 @else:
893 :copy $TOOLSSOURCE/mve.awk $DEST_TOOLS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894
Bram Moolenaar1e015462005-09-25 22:16:38 +0000895 :sys chmod $SCRIPTMOD ``grep -l "^#!" $DEST_TOOLS/*``
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000897# install the language specific files for tools, if they were unpacked
898install-tool-languages:
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000899 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000900 :sys ./installman.sh xxd $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
901 :sys ./installman.sh xxd $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
902 :sys ./installman.sh xxd $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
903 :sys ./installman.sh xxd $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
904 :sys ./installman.sh xxd $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
905 :sys ./installman.sh xxd $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000906 :sys ./installman.sh xxd $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
907 :sys ./installman.sh xxd $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000908 :sys ./installman.sh xxd $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
909 :sys ./installman.sh xxd $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
910
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911# install the language specific files, if they were unpacked
912install-languages {virtual}{force}: languages $DEST_LANG $DEST_KMAP
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000913 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000914 :sys ./installman.sh install $(DEST_MAN_FR) "-fr" $(INSTALLMANARGS)
915 :sys ./installman.sh install $(DEST_MAN_FR_I) "-fr" $(INSTALLMANARGS)
916 :sys ./installman.sh install $(DEST_MAN_FR_U) "-fr.UTF-8" $(INSTALLMANARGS)
917 :sys ./installman.sh install $(DEST_MAN_IT) "-it" $(INSTALLMANARGS)
918 :sys ./installman.sh install $(DEST_MAN_IT_I) "-it" $(INSTALLMANARGS)
919 :sys ./installman.sh install $(DEST_MAN_IT_U) "-it.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000920 :sys ./installman.sh install $(DEST_MAN_PL) "-pl" $(INSTALLMANARGS)
921 :sys ./installman.sh install $(DEST_MAN_PL_U) "-pl.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000922 :sys ./installman.sh install $(DEST_MAN_RU) "-ru" $(INSTALLMANARGS)
923 :sys ./installman.sh install $(DEST_MAN_RU_U) "-ru.UTF-8" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000924 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000925 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
926 $(DEST_MAN_FR) $(INSTALLMLARGS)
927 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
928 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
929 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
930 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
931 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
932 $(DEST_MAN_IT) $(INSTALLMLARGS)
933 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
934 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
935 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
936 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
937 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +0000938 $(DEST_MAN_PL) $(INSTALLMLARGS)
939 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
940 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
941 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +0000942 $(DEST_MAN_RU) $(INSTALLMLARGS)
943 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
944 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
945
Bram Moolenaar1e015462005-09-25 22:16:38 +0000946 @if _no.MAKEMO:
947 :sys cd $PODIR; $MAKE prefix=$DESTDIR$prefix \
948 LOCALEDIR=$DEST_LANG INSTALL_DATA=cp FILEMOD=$FILEMOD install
949 @if os.path.exists(_no.LANGSOURCE):
950 :print installing language files
951 :copy $LANGSOURCE/README.txt $LANGSOURCE/*.vim $DEST_LANG
952 :chmod $FILEMOD $DEST_LANG/*.vim
953 @if os.path.exists(_no.KMAPSOURCE):
954 :copy $KMAPSOURCE/README.txt $KMAPSOURCE/*.vim $DEST_KMAP
955 :chmod $FILEMOD $DEST_KMAP/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000956
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957# install the icons for KDE, if the directory exists and the icon doesn't.
958ICON48PATH = $DESTDIR$DATADIR/icons/hicolor/48x48/apps
959ICON32PATH = $DESTDIR$DATADIR/icons/locolor/32x32/apps
960ICON16PATH = $DESTDIR$DATADIR/icons/locolor/16x16/apps
961KDEPATH = $HOME/.kde/share/icons
962install-icons {virtual}:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000963 gp = $ICON48PATH/gvim.png
964 @if os.path.isdir(_no.ICON48PATH) and not os.path.exists(gp):
965 :copy $SCRIPTSOURCE/vim48x48.png $gp
966 gp = $ICON32PATH/gvim.png
967 @if os.path.isdir(_no.ICON32PATH) and not os.path.exists(gp):
968 :copy $SCRIPTSOURCE/vim32x32.png $gp
969 gp = $ICON16PATH/gvim.png
970 @if os.path.isdir(_no.ICON16PATH) and not os.path.exists(gp):
971 :copy $SCRIPTSOURCE/vim16x16.png $gp
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972
973
974$HELPSOURCE/vim.1 $MACROSOURCE $TOOLSSOURCE:
Bram Moolenaar1e015462005-09-25 22:16:38 +0000975 @if not os.path.exists(_no.TOOLSSOURCE):
976 :print Runtime files not found.
977 :error You need to unpack the runtime archive before running "make install".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978
979# create links from various names to vim. This is only done when the links
980# (or executables with the same name) don't exist yet.
981installlinks {virtual}: $GUI_TARGETS \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000982 $DEST_BIN/$EXTARGET \
983 $DEST_BIN/$VIEWTARGET \
984 $DEST_BIN/$RVIMTARGET \
985 $DEST_BIN/$RVIEWTARGET \
986 $INSTALLVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987
988installglinks {virtual}: $DEST_BIN/$GVIMTARGET \
Bram Moolenaar1e015462005-09-25 22:16:38 +0000989 $DEST_BIN/$GVIEWTARGET \
990 $DEST_BIN/$RGVIMTARGET \
991 $DEST_BIN/$RGVIEWTARGET \
992 $DEST_BIN/$EVIMTARGET \
993 $DEST_BIN/$EVIEWTARGET \
994 $INSTALLGVIMDIFF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995
996installvimdiff {virtual}: $DEST_BIN/$VIMDIFFTARGET
997installgvimdiff {virtual}: $DEST_BIN/$GVIMDIFFTARGET
998
999# These dependencies use an empty buildcheck so that they are only done when
1000# the target doesn't exist.
1001$DEST_BIN/$EXTARGET: {buildcheck = }
1002 :sys cd $DEST_BIN; ln -s $VIMTARGET $EXTARGET
1003
1004$DEST_BIN/$VIEWTARGET: {buildcheck = }
1005 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIEWTARGET
1006
1007$DEST_BIN/$GVIMTARGET: {buildcheck = }
1008 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMTARGET
1009
1010$DEST_BIN/$GVIEWTARGET: {buildcheck = }
1011 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIEWTARGET
1012
1013$DEST_BIN/$RVIMTARGET: {buildcheck = }
1014 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIMTARGET
1015
1016$DEST_BIN/$RVIEWTARGET: {buildcheck = }
1017 :sys cd $DEST_BIN; ln -s $VIMTARGET $RVIEWTARGET
1018
1019$DEST_BIN/$RGVIMTARGET: {buildcheck = }
1020 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIMTARGET
1021
1022$DEST_BIN/$RGVIEWTARGET: {buildcheck = }
1023 :sys cd $DEST_BIN; ln -s $VIMTARGET $RGVIEWTARGET
1024
1025$DEST_BIN/$VIMDIFFTARGET: {buildcheck = }
1026 :sys cd $DEST_BIN; ln -s $VIMTARGET $VIMDIFFTARGET
1027
1028$DEST_BIN/$GVIMDIFFTARGET: {buildcheck = }
1029 :sys cd $DEST_BIN; ln -s $VIMTARGET $GVIMDIFFTARGET
1030
1031$DEST_BIN/$EVIMTARGET: {buildcheck = }
1032 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIMTARGET
1033
1034$DEST_BIN/$EVIEWTARGET: {buildcheck = }
1035 :sys cd $DEST_BIN; ln -s $VIMTARGET $EVIEWTARGET
1036
Bram Moolenaar1e015462005-09-25 22:16:38 +00001037# create links for the manual pages with various names to vim. This is only
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038# done when the links (or manpages with the same name) don't exist yet.
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001039INSTALLMLARGS = $(VIMNAME) $(VIMDIFFNAME) $(EVIMNAME) \
1040 $(EXNAME) $(VIEWNAME) $(RVIMNAME) $(RVIEWNAME) \
1041 $(GVIMNAME) $(GVIEWNAME) $(RGVIMNAME) $(RGVIEWNAME) \
1042 $(GVIMDIFFNAME) $(EVIEWNAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001043
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001044installmanlinks {virtual}:
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001045 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001046 :sys ./installml.sh install "$(GUI_MAN_TARGETS)" \
1047 $(DEST_MAN) $(INSTALLMLARGS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
1049#
1050# U N I N S T A L L
1051#
1052uninstall {virtual}{force}: uninstall_runtime
1053 :del {force} $DEST_BIN/$VIMTARGET
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054 :del {force} $DEST_BIN/vimtutor
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 :del {force} $DEST_BIN/$EXTARGET $DEST_BIN/$VIEWTARGET
1056 :del {force} $DEST_BIN/$GVIMTARGET $DEST_BIN/$GVIEWTARGET
1057 :del {force} $DEST_BIN/$RVIMTARGET $DEST_BIN/$RVIEWTARGET
1058 :del {force} $DEST_BIN/$RGVIMTARGET $DEST_BIN/$RGVIEWTARGET
1059 :del {force} $DEST_BIN/$VIMDIFFTARGET $DEST_BIN/$GVIMDIFFTARGET
1060 :del {force} $DEST_BIN/$EVIMTARGET $DEST_BIN/$EVIEWTARGET
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001061 :del {force} $DEST_BIN/xxd$EXESUF
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062
1063# Note: "deldir" will fail if any files were added after "make install", that
1064# is intentionally: Keep files the user added.
1065uninstall_runtime {virtual}{force}:
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001066 :chmod 755 installman.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001067 :sys ./installman.sh uninstall $(DEST_MAN) "" $(INSTALLMANARGS)
1068 :sys ./installman.sh uninstall $(DEST_MAN_FR) "" $(INSTALLMANARGS)
1069 :sys ./installman.sh uninstall $(DEST_MAN_FR_I) "" $(INSTALLMANARGS)
1070 :sys ./installman.sh uninstall $(DEST_MAN_FR_U) "" $(INSTALLMANARGS)
1071 :sys ./installman.sh uninstall $(DEST_MAN_IT) "" $(INSTALLMANARGS)
1072 :sys ./installman.sh uninstall $(DEST_MAN_IT_I) "" $(INSTALLMANARGS)
1073 :sys ./installman.sh uninstall $(DEST_MAN_IT_U) "" $(INSTALLMANARGS)
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001074 :sys ./installman.sh uninstall $(DEST_MAN_PL) "" $(INSTALLMANARGS)
1075 :sys ./installman.sh uninstall $(DEST_MAN_PL_U) "" $(INSTALLMANARGS)
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001076 :sys ./installman.sh uninstall $(DEST_MAN_RU) "" $(INSTALLMANARGS)
1077 :sys ./installman.sh uninstall $(DEST_MAN_RU_U) "" $(INSTALLMANARGS)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001078 :chmod 755 installml.sh
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001079 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1080 $(DEST_MAN) $(INSTALLMLARGS)
1081 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1082 $(DEST_MAN_FR) $(INSTALLMLARGS)
1083 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1084 $(DEST_MAN_FR_I) $(INSTALLMLARGS)
1085 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1086 $(DEST_MAN_FR_U) $(INSTALLMLARGS)
1087 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1088 $(DEST_MAN_IT) $(INSTALLMLARGS)
1089 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1090 $(DEST_MAN_IT_I) $(INSTALLMLARGS)
1091 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1092 $(DEST_MAN_IT_U) $(INSTALLMLARGS)
1093 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar899dddf2006-03-26 21:06:50 +00001094 $(DEST_MAN_PL) $(INSTALLMLARGS)
1095 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1096 $(DEST_MAN_PL_U) $(INSTALLMLARGS)
1097 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001098 $(DEST_MAN_RU) $(INSTALLMLARGS)
1099 :sys ./installml.sh uninstall "$(GUI_MAN_TARGETS)" \
1100 $(DEST_MAN_RU_U) $(INSTALLMLARGS)
1101 :del {force} $DEST_MAN/xxd.1
1102 :del {force} $(DEST_MAN_FR)/xxd.1 $(DEST_MAN_FR_I)/xxd.1 $(DEST_MAN_FR_U)/xxd.1
1103 :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 +00001104 :del {force} $(DEST_MAN_PL)/xxd.1 $(DEST_MAN_PL_U)/xxd.1
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001105 :del {force} $(DEST_MAN_RU)/xxd.1 $(DEST_MAN_RU_U)/xxd.1
1106
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107 :del {force} $DEST_HELP/*.txt $DEST_HELP/tags $DEST_HELP/*.pl
1108 :del {force} $SYS_MENU_FILE $SYS_SYNMENU_FILE $SYS_DELMENU_FILE
1109 :del {force} $SYS_BUGR_FILE $EVIM_FILE $MSWIN_FILE
1110 :del {force} $DEST_SCRIPT/gvimrc_example.vim $DEST_SCRIPT/vimrc_example.vim
1111 :del {force} $SYS_FILETYPE_FILE $SYS_FTOFF_FILE $SYS_SCRIPTS_FILE
1112 :del {force} $SYS_INDOFF_FILE $SYS_INDENT_FILE
1113 :del {force} $SYS_FTPLUGOF_FILE $SYS_FTPLUGIN_FILE
1114 :del {force} $SYS_OPTWIN_FILE
1115 :del {force} $DEST_COL/*.vim $DEST_COL/README.txt
1116 :del {force} $DEST_SYN/*.vim $DEST_SYN/README.txt
1117 :del {force} $DEST_IND/*.vim $DEST_IND/README.txt
1118 :del {force} $DEST_PRINT/*.ps
1119 :del {force}{recursive} $DEST_MACRO
1120 :del {force}{recursive} $DEST_TUTOR
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001121 :del {force}{recursive} $DEST_SPELL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 :del {force}{recursive} $DEST_TOOLS
1123 :del {force}{recursive} $DEST_LANG
1124 :del {force}{recursive} $DEST_KMAP
1125 :del {force}{recursive} $DEST_COMP
1126 :deldir {force} $DEST_HELP $DEST_COL $DEST_SYN $DEST_IND
1127 :del {force}{recursive} $DEST_FTP/*.vim $DEST_FTP/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +00001128 :del {force} $DEST_AUTO/*.vim $DEST_AUTO/README.txt $DEST_AUTO/xml/*.vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 :del {force} $DEST_PLUG/*.vim $DEST_PLUG/README.txt
Bram Moolenaar18144c82006-04-12 21:52:12 +00001130 :deldir {force} $DEST_FTP $DEST_AUTO/xml $DEST_AUTO $DEST_PLUG $DEST_PRINT $DEST_RT
Bram Moolenaar1e015462005-09-25 22:16:38 +00001131# This will fail when other Vim versions are installed, no worries.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 @try:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001133 :deldir $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 @except:
Bram Moolenaar1e015462005-09-25 22:16:38 +00001135 :print Cannot delete $DEST_VIM
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136
Bram Moolenaar8ab561d2006-03-23 22:44:10 +00001137###############################################################################
1138### MacOS X installation
1139###
1140### This installs a runnable Vim.app in $(prefix)
1141
1142REZ = /Developer/Tools/Rez
1143RESDIR = $(APPDIR)/Contents/Resources
1144@r = re.compile('.*VIM_VERSION_SHORT\\s*"(\\d[^"]*)".*', re.S)
1145VERSION = /`r.match(open("version.h").read()).group(1)`
1146ICON_APP = gui_mac.icns
1147
1148### Common flags
1149M4FLAGSX = $?(M4FLAGS) -DAPP_EXE=$(VIMNAME) -DAPP_NAME=$(VIMNAME) \
1150 -DAPP_VER=$(VERSION) -DICON_APP=$(ICON_APP)
1151
1152### Icons
1153ICONS = $(RESDIR)/$(ICON_APP)
1154
1155:attr {directory = $DIRMOD} $RESDIR
1156
1157# If you uncomment the following lines the *.icns in the src directory will be
1158# detected by this Makefile automatically, and used for Vim.
1159#ICON_APP = $(shell if [ -e app.icns ] ; then echo app.icns ; else echo gui_mac.icns ; fi)
1160#ICON_DOC = $(shell if [ -e doc.icns ] ; then echo doc.icns ; else echo ; fi)
1161#ICON_DOCTXT = $(shell if [ -e doc-txt.icns ] ; then echo doc-txt.icns ; else echo ; fi)
1162#ICONS = $(addprefix $(RESDIR)/, $(ICON_APP) $(ICON_DOC) $(ICON_DOCTXT))
1163
1164install_macosx {virtual}: gui_bundle
1165# Remove the link to the runtime dir, don't want to copy all of that.
1166 :delete {force} $(RESDIR)/vim/runtime
1167 :copy {r} $APPDIR $DESTDIR$prefix
1168 :tree $DESTDIR$prefix {dirname = AAPDIR}
1169 :delete {recursive} $name
1170# Install the runtime files. Recursive!
1171 :mkdir {r}{f} $DESTDIR$prefix/$RESDIR/vim/runtime
1172# :mkdir $(DESTDIR)$(prefix)/$(APPDIR)/bin
1173 :execute main.aap PREFIX=$DESTDIR$prefix/$RESDIR/vim VIMRTLOC=$DESTDIR$prefix/$RESDIR/vim/runtime installruntime
1174# Put the link back.
1175 :symlink `os.getcwd()`/../runtime $RESDIR/vim/runtime
1176# TODO: Create the vimtutor application.
1177
1178gui_bundle {virtual}: $(RESDIR) bundle-dir bundle-executable bundle-info \
1179 bundle-resource bundle-language
1180
1181bundle-dir {virtual}: $(APPDIR)/Contents $(VIMTARGET)
1182# Make a link to the runtime directory, so that we can try out the executable
1183# without installing it.
1184 :mkdir {r}{f} $(RESDIR)/vim
1185 :symlink {quiet} `os.getcwd()`/../runtime $(RESDIR)/vim/runtime
1186
1187bundle-executable {virtual}: $(VIMTARGET)
1188 :mkdir {r}{f} $(APPDIR)/Contents/MacOS
1189 :copy $(VIMTARGET) $(APPDIR)/Contents/MacOS/$(VIMTARGET)
1190
1191bundle-info {virtual}: bundle-dir
1192 :print Creating PkgInfo
1193 :print "APPLVIM!" >! $(APPDIR)/Contents/PkgInfo
1194 :print Creating Info.plist
1195 :sys m4 $(M4FLAGSX) infplist.xml > $(APPDIR)/Contents/Info.plist
1196
1197bundle-resource {virtual}: bundle-dir bundle-icons bundle-rsrc
1198
1199bundle-icons {virtual}: $ICONS
1200
1201### Classic resources
1202# Resource fork (in the form of a .rsrc file) for Classic Vim (Mac OS 9)
1203# This file is also required for OS X Vim.
1204bundle-rsrc {virtual}: os_mac.rsr.hqx
1205 :print Creating resource fork
1206 :sys python dehqx.py $source
1207 :del {force} gui_mac.rsrc
1208 :move gui_mac.rsrc.rsrcfork $(RESDIR)/$(VIMNAME).rsrc
1209
1210# po/Make_osx.pl says something about generating a Mac message file
1211# for Ukrananian. Would somebody using Mac OS X in Ukranian
1212# *really* be upset that Carbon Vim was not localised in
1213# Ukranian?
1214#
1215#bundle-language: bundle-dir po/Make_osx.pl
1216# cd po && perl Make_osx.pl --outdir ../$(RESDIR) $(MULTILANG)
1217bundle-language {virtual}: bundle-dir
1218
1219$(APPDIR)/Contents:
1220 :mkdir {r} $(APPDIR)/Contents/MacOS
1221 :mkdir {r} $(RESDIR)/English.lproj
1222
1223$ICONS: $ICON_APP
1224 :copy $source $target
1225
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227# vim: sts=4 sw=4 :