Mercurial > vim
annotate src/Make_manx.mak @ 16807:ce0eea70294d
Added tag v8.1.1405 for changeset 306766ed0f70eccd4e1a26fae9fb00815139ecb3
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 26 May 2019 21:15:04 +0200 |
parents | 30de89c1d090 |
children | ba06a1c42274 |
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 \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
40 autocmd.c \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
41 blowfish.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
42 buffer.c \ |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
43 change.c \ |
7 | 44 charset.c \ |
6126 | 45 crypt.c \ |
46 crypt_zip.c \ | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
47 debugger.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
48 dict.c \ |
7 | 49 diff.c \ |
50 digraph.c \ | |
51 edit.c \ | |
52 eval.c \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
53 evalfunc.c \ |
7 | 54 ex_cmds.c \ |
55 ex_cmds2.c \ | |
56 ex_docmd.c \ | |
57 ex_eval.c \ | |
58 ex_getln.c \ | |
59 fileio.c \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
60 findfile.c \ |
7 | 61 fold.c \ |
62 getchar.c \ | |
440 | 63 hardcopy.c \ |
799 | 64 hashtab.c \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
65 indent.c \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
66 insexpand.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
67 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
68 list.c \ |
7 | 69 main.c \ |
70 mark.c \ | |
71 memfile.c \ | |
72 memline.c \ | |
73 menu.c \ | |
74 message.c \ | |
75 misc1.c \ | |
76 misc2.c \ | |
77 move.c \ | |
78 mbyte.c \ | |
79 normal.c \ | |
80 ops.c \ | |
81 option.c \ | |
82 os_amiga.c \ | |
799 | 83 popupmnu.c \ |
7 | 84 quickfix.c \ |
85 regexp.c \ | |
86 screen.c \ | |
87 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
88 sha256.c \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
89 sign.c \ |
222 | 90 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
91 spellfile.c \ |
7 | 92 syntax.c \ |
93 tag.c \ | |
94 term.c \ | |
95 ui.c \ | |
96 undo.c \ | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
97 usercmd.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
98 userfunc.c \ |
7 | 99 window.c \ |
100 version.c | |
101 | |
102 INCL = vim.h feature.h keymap.h macros.h ascii.h term.h structs.h os_amiga.h | |
103 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
104 OBJ = obj/arabic.o \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
105 obj/autocmd.o \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
106 obj/blowfish.o \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
107 obj/buffer.o \ |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
108 obj/change.o \ |
7 | 109 obj/charset.o \ |
6126 | 110 obj/crypt.o \ |
111 obj/crypt_zip.o \ | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
112 obj/debugger.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
113 obj/dict.o \ |
7 | 114 obj/diff.o \ |
115 obj/digraph.o \ | |
116 obj/edit.o \ | |
117 obj/eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
118 obj/evalfunc.o \ |
7 | 119 obj/ex_cmds.o \ |
120 obj/ex_cmds2.o \ | |
121 obj/ex_docmd.o \ | |
122 obj/ex_eval.o \ | |
123 obj/ex_getln.o \ | |
124 obj/fileio.o \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
125 obj/findfile.o \ |
7 | 126 obj/fold.o \ |
127 obj/getchar.o \ | |
440 | 128 obj/hardcopy.o \ |
799 | 129 obj/hashtab.o \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
130 obj/indent.o \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
131 obj/insexpand.o \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
132 obj/json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
133 obj/list.o \ |
7 | 134 obj/main.o \ |
135 obj/mark.o \ | |
136 obj/memfile.o \ | |
137 obj/memline.o \ | |
138 obj/menu.o \ | |
139 obj/message.o \ | |
140 obj/misc1.o \ | |
141 obj/misc2.o \ | |
142 obj/move.o \ | |
143 obj/mbyte.o \ | |
144 obj/normal.o \ | |
145 obj/ops.o \ | |
146 obj/option.o \ | |
147 obj/os_amiga.o \ | |
799 | 148 obj/popupmnu.o \ |
7 | 149 obj/quickfix.o \ |
150 obj/regexp.o \ | |
151 obj/screen.o \ | |
152 obj/search.o \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
153 obj/sha256.o \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
154 obj/sign.o \ |
222 | 155 obj/spell.o \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
156 obj/spellfile.o \ |
7 | 157 obj/syntax.o \ |
158 obj/tag.o \ | |
159 obj/term.o \ | |
160 obj/ui.o \ | |
161 obj/undo.o \ | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
162 obj/usercmd.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
163 obj/userfunc.o \ |
7 | 164 obj/window.o \ |
165 $(TERMLIB) | |
166 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
167 PRO = proto/arabic.pro \ |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
168 proto/autocmd.pro \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
169 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
|
170 proto/buffer.pro \ |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
171 proto/change.pro \ |
7 | 172 proto/charset.pro \ |
6126 | 173 proto/crypt.pro \ |
174 proto/crypt_zip.pro \ | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
175 proto/debugger.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
176 proto/dict.pro \ |
7 | 177 proto/diff.pro \ |
178 proto/digraph.pro \ | |
179 proto/edit.pro \ | |
180 proto/eval.pro \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
181 proto/evalfunc.pro \ |
7 | 182 proto/ex_cmds.pro \ |
183 proto/ex_cmds2.pro \ | |
184 proto/ex_docmd.pro \ | |
185 proto/ex_eval.pro \ | |
186 proto/ex_getln.pro \ | |
187 proto/fileio.pro \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
188 proto/findfile.pro \ |
7 | 189 proto/fold.pro \ |
190 proto/getchar.pro \ | |
440 | 191 proto/hardcopy.pro \ |
799 | 192 proto/hashtab.pro \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
193 proto/indent.pro \ |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
194 proto/insexpand.pro \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
195 proto/json.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
196 proto/list.pro \ |
7 | 197 proto/main.pro \ |
198 proto/mark.pro \ | |
199 proto/memfile.pro \ | |
200 proto/memline.pro \ | |
201 proto/menu.pro \ | |
202 proto/message.pro \ | |
203 proto/misc1.pro \ | |
204 proto/misc2.pro \ | |
205 proto/move.pro \ | |
206 proto/mbyte.pro \ | |
207 proto/normal.pro \ | |
208 proto/ops.pro \ | |
209 proto/option.pro \ | |
210 proto/os_amiga.pro \ | |
799 | 211 proto/popupmnu.pro \ |
7 | 212 proto/quickfix.pro \ |
213 proto/regexp.pro \ | |
214 proto/screen.pro \ | |
215 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
|
216 proto/sha256.pro \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
217 proto/sign.pro \ |
222 | 218 proto/spell.pro \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
219 proto/spellfile.pro \ |
7 | 220 proto/syntax.pro \ |
221 proto/tag.pro \ | |
222 proto/term.pro \ | |
223 proto/termlib.pro \ | |
224 proto/ui.pro \ | |
225 proto/undo.pro \ | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
226 proto/usercmd.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
227 proto/userfunc.pro \ |
7 | 228 proto/window.pro |
229 | |
230 all: Vim xxd/Xxd | |
231 | |
232 Vim: obj $(OBJ) version.c version.h | |
233 $(CC) $(CFLAGS) version.c -o obj/version.o | |
234 $(LN) $(LNFLAGS) -m -o Vim $(OBJ) obj/version.o $(LIBS) | |
235 | |
236 debug: obj $(OBJ) version.c version.h | |
237 $(CC) $(CFLAGS) version.c -o obj/version.o | |
238 $(LN) $(LNFLAGS) -m -g -o Vim $(OBJ) obj/version.o $(LIBS) | |
239 | |
240 xxd/Xxd: xxd/xxd.c | |
241 $(SHELL) -c cd xxd; make -f Make_amiga.mak; cd .. | |
242 | |
243 # Making prototypes with Manx has been removed, because it caused too many | |
244 # problems. | |
245 #proto: $(SYMS) $(PRO) | |
246 | |
247 obj: | |
248 makedir obj | |
249 | |
250 tags: $(SRC) $(INCL) | |
251 $(SHELL) -c ctags $(SRC) *.h | |
252 | |
253 # can't use delete here, too many file names | |
254 clean: | |
255 $(DEL) $(OBJ) obj/version.o \ | |
256 obj/termlib.o Vim $(SYMS) xxd/Xxd | |
257 | |
258 test: | |
259 $(SHELL) -c cd testdir; make -f Make_amiga.mak; cd .. | |
260 | |
261 $(SYMS): $(INCL) $(PRO) | |
262 $(CC) $(CFLAGS) -ho$(SYMS) vim.h | |
263 | |
264 ########################################################################### | |
265 | |
266 # Unfortunately, Manx's make doesn't understand a .c.o rule, so each | |
267 # compilation command has to be given explicitly. | |
268 | |
269 CCSYM = $(CC) $(CFLAGS) -hi$(SYMS) -o | |
270 CCNOSYM = $(CC) $(CFLAGS) -o | |
271 | |
272 $(OBJ): $(SYMS) | |
273 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
274 obj/arabic.o: arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
275 $(CCSYM) $@ arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
276 |
15634
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
277 obj/autocmd.o: autocmd.c |
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
278 $(CCSYM) $@ autocmd.c |
746b95fd25ad
patch 8.1.0825: code for autocommands is mixed with file I/O code
Bram Moolenaar <Bram@vim.org>
parents:
15330
diff
changeset
|
279 |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
280 obj/blowfish.o: blowfish.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
281 $(CCSYM) $@ blowfish.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
282 |
7 | 283 obj/buffer.o: buffer.c |
284 $(CCSYM) $@ buffer.c | |
285 | |
16632
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
286 obj/change.o: change.c |
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
287 $(CCSYM) $@ change.c |
30de89c1d090
patch 8.1.1318: code for text changes is in a "misc" file
Bram Moolenaar <Bram@vim.org>
parents:
16411
diff
changeset
|
288 |
7 | 289 obj/charset.o: charset.c |
290 $(CCSYM) $@ charset.c | |
291 | |
6126 | 292 obj/crypt.o: crypt.c |
293 $(CCSYM) $@ crypt.c | |
294 | |
295 obj/crypt_zip.o: crypt_zip.c | |
296 $(CCSYM) $@ crypt_zip.c | |
297 | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
298 obj/debugger.o: debugger.c |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
299 $(CCSYM) $@ debugger.c |
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
300 |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
301 obj/dict.o: dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
302 $(CCSYM) $@ dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
303 |
7 | 304 obj/diff.o: diff.c |
305 $(CCSYM) $@ diff.c | |
306 | |
307 obj/digraph.o: digraph.c | |
308 $(CCSYM) $@ digraph.c | |
309 | |
310 obj/edit.o: edit.c | |
311 $(CCSYM) $@ edit.c | |
312 | |
313 obj/eval.o: eval.c | |
314 $(CCSYM) $@ eval.c | |
315 | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
316 obj/evalfunc.o: evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
317 $(CCSYM) $@ evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
318 |
7 | 319 obj/ex_cmds.o: ex_cmds.c |
320 $(CCSYM) $@ ex_cmds.c | |
321 | |
322 obj/ex_cmds2.o: ex_cmds2.c | |
323 $(CCSYM) $@ ex_cmds2.c | |
324 | |
325 # Don't use $(SYMS) here, because ex_docmd.c defines DO_DECLARE_EXCMD | |
326 obj/ex_docmd.o: ex_docmd.c ex_cmds.h | |
327 $(CCNOSYM) $@ ex_docmd.c | |
328 | |
329 obj/ex_eval.o: ex_eval.c ex_cmds.h | |
330 $(CCSYM) $@ ex_eval.c | |
331 | |
332 obj/ex_getln.o: ex_getln.c | |
333 $(CCSYM) $@ ex_getln.c | |
334 | |
335 obj/fileio.o: fileio.c | |
336 $(CCSYM) $@ fileio.c | |
337 | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
338 obj/findfile.o: findfile.c |
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
339 $(CCSYM) $@ findfile.c |
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
340 |
7 | 341 obj/fold.o: fold.c |
342 $(CCSYM) $@ fold.c | |
343 | |
344 obj/getchar.o: getchar.c | |
345 $(CCSYM) $@ getchar.c | |
346 | |
440 | 347 obj/hardcopy.o: hardcopy.c |
348 $(CCSYM) $@ hardcopy.c | |
349 | |
799 | 350 obj/hashtab.o: hashtab.c |
351 $(CCSYM) $@ hashtab.c | |
121 | 352 |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
353 obj/indent.o: indent.c |
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
354 $(CCSYM) $@ indent.c |
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
355 |
16142
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
356 obj/insexpand.o: insexpand.c |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
357 $(CCSYM) $@ insexpand.c |
570a296aa0b4
patch 8.1.1076: file for Insert mode is much too big
Bram Moolenaar <Bram@vim.org>
parents:
15850
diff
changeset
|
358 |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
359 obj/json.o: json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
360 $(CCSYM) $@ json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
361 |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
362 obj/list.o: list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
363 $(CCSYM) $@ list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
364 |
7 | 365 # Don't use $(SYMS) here, because main.c defines EXTERN |
366 obj/main.o: main.c option.h globals.h | |
367 $(CCNOSYM) $@ main.c | |
368 | |
369 obj/mark.o: mark.c | |
370 $(CCSYM) $@ mark.c | |
371 | |
372 obj/memfile.o: memfile.c | |
373 $(CCSYM) $@ memfile.c | |
374 | |
375 obj/memline.o: memline.c | |
376 $(CCSYM) $@ memline.c | |
377 | |
378 obj/menu.o: menu.c | |
379 $(CCSYM) $@ menu.c | |
380 | |
381 # Don't use $(SYMS) here, because message.c defines MESSAGE_FILE | |
382 obj/message.o: message.c | |
383 $(CCNOSYM) $@ message.c | |
384 | |
385 obj/misc1.o: misc1.c | |
386 $(CCSYM) $@ misc1.c | |
387 | |
388 obj/misc2.o: misc2.c | |
389 $(CCSYM) $@ misc2.c | |
390 | |
391 obj/move.o: move.c | |
392 $(CCSYM) $@ move.c | |
393 | |
394 obj/mbyte.o: mbyte.c | |
395 $(CCSYM) $@ mbyte.c | |
396 | |
397 obj/normal.o: normal.c | |
398 $(CCSYM) $@ normal.c | |
399 | |
400 obj/ops.o: ops.c | |
401 $(CCSYM) $@ ops.c | |
402 | |
403 # Don't use $(SYMS) here, because option.h defines variables here | |
404 obj/option.o: option.c | |
405 $(CCNOSYM) $@ option.c | |
406 | |
407 obj/os_amiga.o: os_amiga.c | |
408 $(CCSYM) $@ os_amiga.c | |
409 | |
799 | 410 obj/popupmnu.o: popupmnu.c |
411 $(CCSYM) $@ popupmnu.c | |
540 | 412 |
7 | 413 obj/quickfix.o: quickfix.c |
414 $(CCSYM) $@ quickfix.c | |
415 | |
416 obj/regexp.o: regexp.c | |
417 $(CCSYM) $@ regexp.c | |
418 | |
419 obj/screen.o: screen.c | |
420 $(CCSYM) $@ screen.c | |
421 | |
422 obj/search.o: search.c | |
423 $(CCSYM) $@ search.c | |
424 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
425 obj/sha256.o: sha256.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
426 $(CCSYM) $@ sha256.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
427 |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
428 obj/sign.o: sign.c |
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
429 $(CCSYM) $@ sign.c |
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
430 |
222 | 431 obj/spell.o: spell.c |
432 $(CCSYM) $@ spell.c | |
433 | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
434 obj/spellfile.o: spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
435 $(CCSYM) $@ spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
436 |
7 | 437 obj/syntax.o: syntax.c |
438 $(CCSYM) $@ syntax.c | |
439 | |
440 obj/tag.o: tag.c | |
441 $(CCSYM) $@ tag.c | |
442 | |
443 obj/term.o: term.c term.h | |
444 $(CCSYM) $@ term.c | |
445 | |
446 obj/termlib.o: termlib.c | |
447 $(CCSYM) $@ termlib.c | |
448 | |
449 obj/ui.o: ui.c | |
450 $(CCSYM) $@ ui.c | |
451 | |
452 obj/undo.o: undo.c | |
453 $(CCSYM) $@ undo.c | |
454 | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
455 obj/usercmd.o: usercmd.c |
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
456 $(CCSYM) $@ usercmd.c |
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
457 |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
458 obj/userfunc.o: userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
459 $(CCSYM) $@ userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
460 |
7 | 461 obj/window.o: window.c |
462 $(CCSYM) $@ window.c |