Mercurial > vim
annotate src/Make_manx.mak @ 13190:9fccd578ce1f v8.0.1469
patch 8.0.1469: when package path is a symlink 'runtimepath' is wrong
commit https://github.com/vim/vim/commit/2374faae111057ee28e8d487f9a52a95855e2206
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 4 17:47:42 2018 +0100
patch 8.0.1469: when package path is a symlink 'runtimepath' is wrong
Problem: When package path is a symlink adding it to 'runtimepath' happens
at the end.
Solution: Do not resolve symlinks before locating the position in
'runtimepath'. (Ozaki Kiichi, closes #2604)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 04 Feb 2018 18:00:06 +0100 |
parents | b0c7061d6439 |
children | a6330a49e036 |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for VIM on the Amiga, using Aztec/Manx C 5.0 or later | |
3 # | |
7435
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
4 # NOTE: THIS IS OLD AND PROBABLY NO LONGER WORKS. |
a4b4cbf8d044
commit https://github.com/vim/vim/commit/17b609ed7f3d718e233a561f792f7473e48b0aaa
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
5 # |
7 | 6 # Note: Not all dependencies are included. This was done to avoid having |
7 # to compile everything when a global variable or function is added. | |
8 # Careful when changing a global struct or variable! | |
9 # | |
10 | |
11 #>>>>> choose options: | |
12 | |
13 ### See feature.h for a list of optionals. | |
14 ### Any other defines can be included here. | |
15 DEFINES = | |
16 | |
17 #>>>>> if HAVE_TGETENT is defined obj/termlib.o has to be used | |
18 #TERMLIB = obj/termlib.o | |
19 TERMLIB = | |
20 | |
21 #>>>>> choose between debugging (-bs) or optimizing (-so) | |
22 OPTIONS = -so | |
23 #OPTIONS = -bs | |
24 | |
25 #>>>>> end of choices | |
26 ########################################################################### | |
27 | |
28 CFLAGS = $(OPTIONS) -wapruq -ps -qf -Iproto $(DEFINES) -DAMIGA | |
29 | |
30 LIBS = -lc16 | |
31 SYMS = vim.syms | |
32 CC = cc | |
33 LN = ln | |
34 LNFLAGS = +q | |
35 SHELL = csh | |
36 REN = $(SHELL) -c mv -f | |
37 DEL = $(SHELL) -c rm -f | |
38 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
39 SRC = arabic.c \ |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
40 blowfish.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
41 buffer.c \ |
7 | 42 charset.c \ |
6126 | 43 crypt.c \ |
44 crypt_zip.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
45 dict.c \ |
7 | 46 diff.c \ |
47 digraph.c \ | |
48 edit.c \ | |
49 eval.c \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
50 evalfunc.c \ |
7 | 51 ex_cmds.c \ |
52 ex_cmds2.c \ | |
53 ex_docmd.c \ | |
54 ex_eval.c \ | |
55 ex_getln.c \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
56 farsi.c \ |
7 | 57 fileio.c \ |
58 fold.c \ | |
59 getchar.c \ | |
440 | 60 hardcopy.c \ |
799 | 61 hashtab.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
62 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
63 list.c \ |
7 | 64 main.c \ |
65 mark.c \ | |
66 memfile.c \ | |
67 memline.c \ | |
68 menu.c \ | |
69 message.c \ | |
70 misc1.c \ | |
71 misc2.c \ | |
72 move.c \ | |
73 mbyte.c \ | |
74 normal.c \ | |
75 ops.c \ | |
76 option.c \ | |
77 os_amiga.c \ | |
799 | 78 popupmnu.c \ |
7 | 79 quickfix.c \ |
80 regexp.c \ | |
81 screen.c \ | |
82 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
83 sha256.c \ |
222 | 84 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
85 spellfile.c \ |
7 | 86 syntax.c \ |
87 tag.c \ | |
88 term.c \ | |
89 ui.c \ | |
90 undo.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
91 userfunc.c \ |
7 | 92 window.c \ |
93 version.c | |
94 | |
95 INCL = vim.h feature.h keymap.h macros.h ascii.h term.h structs.h os_amiga.h | |
96 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
97 OBJ = obj/arabic.o \ |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
98 obj/blowfish.o \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
99 obj/buffer.o \ |
7 | 100 obj/charset.o \ |
6126 | 101 obj/crypt.o \ |
102 obj/crypt_zip.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
103 obj/dict.o \ |
7 | 104 obj/diff.o \ |
105 obj/digraph.o \ | |
106 obj/edit.o \ | |
107 obj/eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
108 obj/evalfunc.o \ |
7 | 109 obj/ex_cmds.o \ |
110 obj/ex_cmds2.o \ | |
111 obj/ex_docmd.o \ | |
112 obj/ex_eval.o \ | |
113 obj/ex_getln.o \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
114 obj/farsi.o \ |
7 | 115 obj/fileio.o \ |
116 obj/fold.o \ | |
117 obj/getchar.o \ | |
440 | 118 obj/hardcopy.o \ |
799 | 119 obj/hashtab.o \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
120 obj/json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
121 obj/list.o \ |
7 | 122 obj/main.o \ |
123 obj/mark.o \ | |
124 obj/memfile.o \ | |
125 obj/memline.o \ | |
126 obj/menu.o \ | |
127 obj/message.o \ | |
128 obj/misc1.o \ | |
129 obj/misc2.o \ | |
130 obj/move.o \ | |
131 obj/mbyte.o \ | |
132 obj/normal.o \ | |
133 obj/ops.o \ | |
134 obj/option.o \ | |
135 obj/os_amiga.o \ | |
799 | 136 obj/popupmnu.o \ |
7 | 137 obj/quickfix.o \ |
138 obj/regexp.o \ | |
139 obj/screen.o \ | |
140 obj/search.o \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
141 obj/sha256.o \ |
222 | 142 obj/spell.o \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
143 obj/spellfile.o \ |
7 | 144 obj/syntax.o \ |
145 obj/tag.o \ | |
146 obj/term.o \ | |
147 obj/ui.o \ | |
148 obj/undo.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
149 obj/userfunc.o \ |
7 | 150 obj/window.o \ |
151 $(TERMLIB) | |
152 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
153 PRO = proto/arabic.pro \ |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
154 proto/blowfish.pro \ |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
155 proto/buffer.pro \ |
7 | 156 proto/charset.pro \ |
6126 | 157 proto/crypt.pro \ |
158 proto/crypt_zip.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
159 proto/dict.pro \ |
7 | 160 proto/diff.pro \ |
161 proto/digraph.pro \ | |
162 proto/edit.pro \ | |
163 proto/eval.pro \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
164 proto/evalfunc.pro \ |
7 | 165 proto/ex_cmds.pro \ |
166 proto/ex_cmds2.pro \ | |
167 proto/ex_docmd.pro \ | |
168 proto/ex_eval.pro \ | |
169 proto/ex_getln.pro \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
170 proto/farsi.pro \ |
7 | 171 proto/fileio.pro \ |
172 proto/fold.pro \ | |
173 proto/getchar.pro \ | |
440 | 174 proto/hardcopy.pro \ |
799 | 175 proto/hashtab.pro \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
176 proto/json.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
177 proto/list.pro \ |
7 | 178 proto/main.pro \ |
179 proto/mark.pro \ | |
180 proto/memfile.pro \ | |
181 proto/memline.pro \ | |
182 proto/menu.pro \ | |
183 proto/message.pro \ | |
184 proto/misc1.pro \ | |
185 proto/misc2.pro \ | |
186 proto/move.pro \ | |
187 proto/mbyte.pro \ | |
188 proto/normal.pro \ | |
189 proto/ops.pro \ | |
190 proto/option.pro \ | |
191 proto/os_amiga.pro \ | |
799 | 192 proto/popupmnu.pro \ |
7 | 193 proto/quickfix.pro \ |
194 proto/regexp.pro \ | |
195 proto/screen.pro \ | |
196 proto/search.pro \ | |
2180
f60a0c9cbe6c
Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.
Bram Moolenaar <bram@vim.org>
parents:
799
diff
changeset
|
197 proto/sha256.pro \ |
222 | 198 proto/spell.pro \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
199 proto/spellfile.pro \ |
7 | 200 proto/syntax.pro \ |
201 proto/tag.pro \ | |
202 proto/term.pro \ | |
203 proto/termlib.pro \ | |
204 proto/ui.pro \ | |
205 proto/undo.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
206 proto/userfunc.pro \ |
7 | 207 proto/window.pro |
208 | |
209 all: Vim xxd/Xxd | |
210 | |
211 Vim: obj $(OBJ) version.c version.h | |
212 $(CC) $(CFLAGS) version.c -o obj/version.o | |
213 $(LN) $(LNFLAGS) -m -o Vim $(OBJ) obj/version.o $(LIBS) | |
214 | |
215 debug: obj $(OBJ) version.c version.h | |
216 $(CC) $(CFLAGS) version.c -o obj/version.o | |
217 $(LN) $(LNFLAGS) -m -g -o Vim $(OBJ) obj/version.o $(LIBS) | |
218 | |
219 xxd/Xxd: xxd/xxd.c | |
220 $(SHELL) -c cd xxd; make -f Make_amiga.mak; cd .. | |
221 | |
222 # Making prototypes with Manx has been removed, because it caused too many | |
223 # problems. | |
224 #proto: $(SYMS) $(PRO) | |
225 | |
226 obj: | |
227 makedir obj | |
228 | |
229 tags: $(SRC) $(INCL) | |
230 $(SHELL) -c ctags $(SRC) *.h | |
231 | |
232 # can't use delete here, too many file names | |
233 clean: | |
234 $(DEL) $(OBJ) obj/version.o \ | |
235 obj/termlib.o Vim $(SYMS) xxd/Xxd | |
236 | |
237 test: | |
238 $(SHELL) -c cd testdir; make -f Make_amiga.mak; cd .. | |
239 | |
240 $(SYMS): $(INCL) $(PRO) | |
241 $(CC) $(CFLAGS) -ho$(SYMS) vim.h | |
242 | |
243 ########################################################################### | |
244 | |
245 # Unfortunately, Manx's make doesn't understand a .c.o rule, so each | |
246 # compilation command has to be given explicitly. | |
247 | |
248 CCSYM = $(CC) $(CFLAGS) -hi$(SYMS) -o | |
249 CCNOSYM = $(CC) $(CFLAGS) -o | |
250 | |
251 $(OBJ): $(SYMS) | |
252 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
253 obj/arabic.o: arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
254 $(CCSYM) $@ arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
255 |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
256 obj/blowfish.o: blowfish.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
257 $(CCSYM) $@ blowfish.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
258 |
7 | 259 obj/buffer.o: buffer.c |
260 $(CCSYM) $@ buffer.c | |
261 | |
262 obj/charset.o: charset.c | |
263 $(CCSYM) $@ charset.c | |
264 | |
6126 | 265 obj/crypt.o: crypt.c |
266 $(CCSYM) $@ crypt.c | |
267 | |
268 obj/crypt_zip.o: crypt_zip.c | |
269 $(CCSYM) $@ crypt_zip.c | |
270 | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
271 obj/dict.o: dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
272 $(CCSYM) $@ dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
273 |
7 | 274 obj/diff.o: diff.c |
275 $(CCSYM) $@ diff.c | |
276 | |
277 obj/digraph.o: digraph.c | |
278 $(CCSYM) $@ digraph.c | |
279 | |
280 obj/edit.o: edit.c | |
281 $(CCSYM) $@ edit.c | |
282 | |
283 obj/eval.o: eval.c | |
284 $(CCSYM) $@ eval.c | |
285 | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
286 obj/evalfunc.o: evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
287 $(CCSYM) $@ evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
288 |
7 | 289 obj/ex_cmds.o: ex_cmds.c |
290 $(CCSYM) $@ ex_cmds.c | |
291 | |
292 obj/ex_cmds2.o: ex_cmds2.c | |
293 $(CCSYM) $@ ex_cmds2.c | |
294 | |
295 # Don't use $(SYMS) here, because ex_docmd.c defines DO_DECLARE_EXCMD | |
296 obj/ex_docmd.o: ex_docmd.c ex_cmds.h | |
297 $(CCNOSYM) $@ ex_docmd.c | |
298 | |
299 obj/ex_eval.o: ex_eval.c ex_cmds.h | |
300 $(CCSYM) $@ ex_eval.c | |
301 | |
302 obj/ex_getln.o: ex_getln.c | |
303 $(CCSYM) $@ ex_getln.c | |
304 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
305 obj/farsi.o: farsi.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
306 $(CCSYM) $@ farsi.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
307 |
7 | 308 obj/fileio.o: fileio.c |
309 $(CCSYM) $@ fileio.c | |
310 | |
311 obj/fold.o: fold.c | |
312 $(CCSYM) $@ fold.c | |
313 | |
314 obj/getchar.o: getchar.c | |
315 $(CCSYM) $@ getchar.c | |
316 | |
440 | 317 obj/hardcopy.o: hardcopy.c |
318 $(CCSYM) $@ hardcopy.c | |
319 | |
799 | 320 obj/hashtab.o: hashtab.c |
321 $(CCSYM) $@ hashtab.c | |
121 | 322 |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
323 obj/json.o: json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
324 $(CCSYM) $@ json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
325 |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
326 obj/list.o: list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
327 $(CCSYM) $@ list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
328 |
7 | 329 # Don't use $(SYMS) here, because main.c defines EXTERN |
330 obj/main.o: main.c option.h globals.h | |
331 $(CCNOSYM) $@ main.c | |
332 | |
333 obj/mark.o: mark.c | |
334 $(CCSYM) $@ mark.c | |
335 | |
336 obj/memfile.o: memfile.c | |
337 $(CCSYM) $@ memfile.c | |
338 | |
339 obj/memline.o: memline.c | |
340 $(CCSYM) $@ memline.c | |
341 | |
342 obj/menu.o: menu.c | |
343 $(CCSYM) $@ menu.c | |
344 | |
345 # Don't use $(SYMS) here, because message.c defines MESSAGE_FILE | |
346 obj/message.o: message.c | |
347 $(CCNOSYM) $@ message.c | |
348 | |
349 obj/misc1.o: misc1.c | |
350 $(CCSYM) $@ misc1.c | |
351 | |
352 obj/misc2.o: misc2.c | |
353 $(CCSYM) $@ misc2.c | |
354 | |
355 obj/move.o: move.c | |
356 $(CCSYM) $@ move.c | |
357 | |
358 obj/mbyte.o: mbyte.c | |
359 $(CCSYM) $@ mbyte.c | |
360 | |
361 obj/normal.o: normal.c | |
362 $(CCSYM) $@ normal.c | |
363 | |
364 obj/ops.o: ops.c | |
365 $(CCSYM) $@ ops.c | |
366 | |
367 # Don't use $(SYMS) here, because option.h defines variables here | |
368 obj/option.o: option.c | |
369 $(CCNOSYM) $@ option.c | |
370 | |
371 obj/os_amiga.o: os_amiga.c | |
372 $(CCSYM) $@ os_amiga.c | |
373 | |
799 | 374 obj/popupmnu.o: popupmnu.c |
375 $(CCSYM) $@ popupmnu.c | |
540 | 376 |
7 | 377 obj/quickfix.o: quickfix.c |
378 $(CCSYM) $@ quickfix.c | |
379 | |
380 obj/regexp.o: regexp.c | |
381 $(CCSYM) $@ regexp.c | |
382 | |
383 obj/screen.o: screen.c | |
384 $(CCSYM) $@ screen.c | |
385 | |
386 obj/search.o: search.c | |
387 $(CCSYM) $@ search.c | |
388 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
389 obj/sha256.o: sha256.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
390 $(CCSYM) $@ sha256.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
391 |
222 | 392 obj/spell.o: spell.c |
393 $(CCSYM) $@ spell.c | |
394 | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
395 obj/spellfile.o: spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
396 $(CCSYM) $@ spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
397 |
7 | 398 obj/syntax.o: syntax.c |
399 $(CCSYM) $@ syntax.c | |
400 | |
401 obj/tag.o: tag.c | |
402 $(CCSYM) $@ tag.c | |
403 | |
404 obj/term.o: term.c term.h | |
405 $(CCSYM) $@ term.c | |
406 | |
407 obj/termlib.o: termlib.c | |
408 $(CCSYM) $@ termlib.c | |
409 | |
410 obj/ui.o: ui.c | |
411 $(CCSYM) $@ ui.c | |
412 | |
413 obj/undo.o: undo.c | |
414 $(CCSYM) $@ undo.c | |
415 | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
416 obj/userfunc.o: userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
417 $(CCSYM) $@ userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
418 |
7 | 419 obj/window.o: window.c |
420 $(CCSYM) $@ window.c |