Mercurial > vim
annotate src/Make_manx.mak @ 15467:6bfdffc67a8e
Added tag v8.1.0741 for changeset 435fcefd2c8e5d73bfd068072cb425a179f2415e
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 13 Jan 2019 18:00:05 +0100 |
parents | a6330a49e036 |
children | 746b95fd25ad |
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 \ |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
84 sign.c \ |
222 | 85 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
86 spellfile.c \ |
7 | 87 syntax.c \ |
88 tag.c \ | |
89 term.c \ | |
90 ui.c \ | |
91 undo.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
92 userfunc.c \ |
7 | 93 window.c \ |
94 version.c | |
95 | |
96 INCL = vim.h feature.h keymap.h macros.h ascii.h term.h structs.h os_amiga.h | |
97 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
98 OBJ = obj/arabic.o \ |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
99 obj/blowfish.o \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
100 obj/buffer.o \ |
7 | 101 obj/charset.o \ |
6126 | 102 obj/crypt.o \ |
103 obj/crypt_zip.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
104 obj/dict.o \ |
7 | 105 obj/diff.o \ |
106 obj/digraph.o \ | |
107 obj/edit.o \ | |
108 obj/eval.o \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
109 obj/evalfunc.o \ |
7 | 110 obj/ex_cmds.o \ |
111 obj/ex_cmds2.o \ | |
112 obj/ex_docmd.o \ | |
113 obj/ex_eval.o \ | |
114 obj/ex_getln.o \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
115 obj/farsi.o \ |
7 | 116 obj/fileio.o \ |
117 obj/fold.o \ | |
118 obj/getchar.o \ | |
440 | 119 obj/hardcopy.o \ |
799 | 120 obj/hashtab.o \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
121 obj/json.o \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
122 obj/list.o \ |
7 | 123 obj/main.o \ |
124 obj/mark.o \ | |
125 obj/memfile.o \ | |
126 obj/memline.o \ | |
127 obj/menu.o \ | |
128 obj/message.o \ | |
129 obj/misc1.o \ | |
130 obj/misc2.o \ | |
131 obj/move.o \ | |
132 obj/mbyte.o \ | |
133 obj/normal.o \ | |
134 obj/ops.o \ | |
135 obj/option.o \ | |
136 obj/os_amiga.o \ | |
799 | 137 obj/popupmnu.o \ |
7 | 138 obj/quickfix.o \ |
139 obj/regexp.o \ | |
140 obj/screen.o \ | |
141 obj/search.o \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
142 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
|
143 obj/sign.o \ |
222 | 144 obj/spell.o \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
145 obj/spellfile.o \ |
7 | 146 obj/syntax.o \ |
147 obj/tag.o \ | |
148 obj/term.o \ | |
149 obj/ui.o \ | |
150 obj/undo.o \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
151 obj/userfunc.o \ |
7 | 152 obj/window.o \ |
153 $(TERMLIB) | |
154 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
155 PRO = proto/arabic.pro \ |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
156 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
|
157 proto/buffer.pro \ |
7 | 158 proto/charset.pro \ |
6126 | 159 proto/crypt.pro \ |
160 proto/crypt_zip.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
161 proto/dict.pro \ |
7 | 162 proto/diff.pro \ |
163 proto/digraph.pro \ | |
164 proto/edit.pro \ | |
165 proto/eval.pro \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
166 proto/evalfunc.pro \ |
7 | 167 proto/ex_cmds.pro \ |
168 proto/ex_cmds2.pro \ | |
169 proto/ex_docmd.pro \ | |
170 proto/ex_eval.pro \ | |
171 proto/ex_getln.pro \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
172 proto/farsi.pro \ |
7 | 173 proto/fileio.pro \ |
174 proto/fold.pro \ | |
175 proto/getchar.pro \ | |
440 | 176 proto/hardcopy.pro \ |
799 | 177 proto/hashtab.pro \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
178 proto/json.pro \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
179 proto/list.pro \ |
7 | 180 proto/main.pro \ |
181 proto/mark.pro \ | |
182 proto/memfile.pro \ | |
183 proto/memline.pro \ | |
184 proto/menu.pro \ | |
185 proto/message.pro \ | |
186 proto/misc1.pro \ | |
187 proto/misc2.pro \ | |
188 proto/move.pro \ | |
189 proto/mbyte.pro \ | |
190 proto/normal.pro \ | |
191 proto/ops.pro \ | |
192 proto/option.pro \ | |
193 proto/os_amiga.pro \ | |
799 | 194 proto/popupmnu.pro \ |
7 | 195 proto/quickfix.pro \ |
196 proto/regexp.pro \ | |
197 proto/screen.pro \ | |
198 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
|
199 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
|
200 proto/sign.pro \ |
222 | 201 proto/spell.pro \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
202 proto/spellfile.pro \ |
7 | 203 proto/syntax.pro \ |
204 proto/tag.pro \ | |
205 proto/term.pro \ | |
206 proto/termlib.pro \ | |
207 proto/ui.pro \ | |
208 proto/undo.pro \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
209 proto/userfunc.pro \ |
7 | 210 proto/window.pro |
211 | |
212 all: Vim xxd/Xxd | |
213 | |
214 Vim: obj $(OBJ) version.c version.h | |
215 $(CC) $(CFLAGS) version.c -o obj/version.o | |
216 $(LN) $(LNFLAGS) -m -o Vim $(OBJ) obj/version.o $(LIBS) | |
217 | |
218 debug: obj $(OBJ) version.c version.h | |
219 $(CC) $(CFLAGS) version.c -o obj/version.o | |
220 $(LN) $(LNFLAGS) -m -g -o Vim $(OBJ) obj/version.o $(LIBS) | |
221 | |
222 xxd/Xxd: xxd/xxd.c | |
223 $(SHELL) -c cd xxd; make -f Make_amiga.mak; cd .. | |
224 | |
225 # Making prototypes with Manx has been removed, because it caused too many | |
226 # problems. | |
227 #proto: $(SYMS) $(PRO) | |
228 | |
229 obj: | |
230 makedir obj | |
231 | |
232 tags: $(SRC) $(INCL) | |
233 $(SHELL) -c ctags $(SRC) *.h | |
234 | |
235 # can't use delete here, too many file names | |
236 clean: | |
237 $(DEL) $(OBJ) obj/version.o \ | |
238 obj/termlib.o Vim $(SYMS) xxd/Xxd | |
239 | |
240 test: | |
241 $(SHELL) -c cd testdir; make -f Make_amiga.mak; cd .. | |
242 | |
243 $(SYMS): $(INCL) $(PRO) | |
244 $(CC) $(CFLAGS) -ho$(SYMS) vim.h | |
245 | |
246 ########################################################################### | |
247 | |
248 # Unfortunately, Manx's make doesn't understand a .c.o rule, so each | |
249 # compilation command has to be given explicitly. | |
250 | |
251 CCSYM = $(CC) $(CFLAGS) -hi$(SYMS) -o | |
252 CCNOSYM = $(CC) $(CFLAGS) -o | |
253 | |
254 $(OBJ): $(SYMS) | |
255 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
256 obj/arabic.o: arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
257 $(CCSYM) $@ arabic.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
258 |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
259 obj/blowfish.o: blowfish.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
260 $(CCSYM) $@ blowfish.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
261 |
7 | 262 obj/buffer.o: buffer.c |
263 $(CCSYM) $@ buffer.c | |
264 | |
265 obj/charset.o: charset.c | |
266 $(CCSYM) $@ charset.c | |
267 | |
6126 | 268 obj/crypt.o: crypt.c |
269 $(CCSYM) $@ crypt.c | |
270 | |
271 obj/crypt_zip.o: crypt_zip.c | |
272 $(CCSYM) $@ crypt_zip.c | |
273 | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
274 obj/dict.o: dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
275 $(CCSYM) $@ dict.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
276 |
7 | 277 obj/diff.o: diff.c |
278 $(CCSYM) $@ diff.c | |
279 | |
280 obj/digraph.o: digraph.c | |
281 $(CCSYM) $@ digraph.c | |
282 | |
283 obj/edit.o: edit.c | |
284 $(CCSYM) $@ edit.c | |
285 | |
286 obj/eval.o: eval.c | |
287 $(CCSYM) $@ eval.c | |
288 | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
289 obj/evalfunc.o: evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
290 $(CCSYM) $@ evalfunc.c |
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
291 |
7 | 292 obj/ex_cmds.o: ex_cmds.c |
293 $(CCSYM) $@ ex_cmds.c | |
294 | |
295 obj/ex_cmds2.o: ex_cmds2.c | |
296 $(CCSYM) $@ ex_cmds2.c | |
297 | |
298 # Don't use $(SYMS) here, because ex_docmd.c defines DO_DECLARE_EXCMD | |
299 obj/ex_docmd.o: ex_docmd.c ex_cmds.h | |
300 $(CCNOSYM) $@ ex_docmd.c | |
301 | |
302 obj/ex_eval.o: ex_eval.c ex_cmds.h | |
303 $(CCSYM) $@ ex_eval.c | |
304 | |
305 obj/ex_getln.o: ex_getln.c | |
306 $(CCSYM) $@ ex_getln.c | |
307 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
308 obj/farsi.o: farsi.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
309 $(CCSYM) $@ farsi.c |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
310 |
7 | 311 obj/fileio.o: fileio.c |
312 $(CCSYM) $@ fileio.c | |
313 | |
314 obj/fold.o: fold.c | |
315 $(CCSYM) $@ fold.c | |
316 | |
317 obj/getchar.o: getchar.c | |
318 $(CCSYM) $@ getchar.c | |
319 | |
440 | 320 obj/hardcopy.o: hardcopy.c |
321 $(CCSYM) $@ hardcopy.c | |
322 | |
799 | 323 obj/hashtab.o: hashtab.c |
324 $(CCSYM) $@ hashtab.c | |
121 | 325 |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
326 obj/json.o: json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
327 $(CCSYM) $@ json.c |
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
7435
diff
changeset
|
328 |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
329 obj/list.o: list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
330 $(CCSYM) $@ list.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
331 |
7 | 332 # Don't use $(SYMS) here, because main.c defines EXTERN |
333 obj/main.o: main.c option.h globals.h | |
334 $(CCNOSYM) $@ main.c | |
335 | |
336 obj/mark.o: mark.c | |
337 $(CCSYM) $@ mark.c | |
338 | |
339 obj/memfile.o: memfile.c | |
340 $(CCSYM) $@ memfile.c | |
341 | |
342 obj/memline.o: memline.c | |
343 $(CCSYM) $@ memline.c | |
344 | |
345 obj/menu.o: menu.c | |
346 $(CCSYM) $@ menu.c | |
347 | |
348 # Don't use $(SYMS) here, because message.c defines MESSAGE_FILE | |
349 obj/message.o: message.c | |
350 $(CCNOSYM) $@ message.c | |
351 | |
352 obj/misc1.o: misc1.c | |
353 $(CCSYM) $@ misc1.c | |
354 | |
355 obj/misc2.o: misc2.c | |
356 $(CCSYM) $@ misc2.c | |
357 | |
358 obj/move.o: move.c | |
359 $(CCSYM) $@ move.c | |
360 | |
361 obj/mbyte.o: mbyte.c | |
362 $(CCSYM) $@ mbyte.c | |
363 | |
364 obj/normal.o: normal.c | |
365 $(CCSYM) $@ normal.c | |
366 | |
367 obj/ops.o: ops.c | |
368 $(CCSYM) $@ ops.c | |
369 | |
370 # Don't use $(SYMS) here, because option.h defines variables here | |
371 obj/option.o: option.c | |
372 $(CCNOSYM) $@ option.c | |
373 | |
374 obj/os_amiga.o: os_amiga.c | |
375 $(CCSYM) $@ os_amiga.c | |
376 | |
799 | 377 obj/popupmnu.o: popupmnu.c |
378 $(CCSYM) $@ popupmnu.c | |
540 | 379 |
7 | 380 obj/quickfix.o: quickfix.c |
381 $(CCSYM) $@ quickfix.c | |
382 | |
383 obj/regexp.o: regexp.c | |
384 $(CCSYM) $@ regexp.c | |
385 | |
386 obj/screen.o: screen.c | |
387 $(CCSYM) $@ screen.c | |
388 | |
389 obj/search.o: search.c | |
390 $(CCSYM) $@ search.c | |
391 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
392 obj/sha256.o: sha256.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
393 $(CCSYM) $@ sha256.c |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
2180
diff
changeset
|
394 |
15330
a6330a49e036
patch 8.1.0673: functionality for signs is spread out over several files
Bram Moolenaar <Bram@vim.org>
parents:
9583
diff
changeset
|
395 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
|
396 $(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
|
397 |
222 | 398 obj/spell.o: spell.c |
399 $(CCSYM) $@ spell.c | |
400 | |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
401 obj/spellfile.o: spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
402 $(CCSYM) $@ spellfile.c |
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
403 |
7 | 404 obj/syntax.o: syntax.c |
405 $(CCSYM) $@ syntax.c | |
406 | |
407 obj/tag.o: tag.c | |
408 $(CCSYM) $@ tag.c | |
409 | |
410 obj/term.o: term.c term.h | |
411 $(CCSYM) $@ term.c | |
412 | |
413 obj/termlib.o: termlib.c | |
414 $(CCSYM) $@ termlib.c | |
415 | |
416 obj/ui.o: ui.c | |
417 $(CCSYM) $@ ui.c | |
418 | |
419 obj/undo.o: undo.c | |
420 $(CCSYM) $@ undo.c | |
421 | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
422 obj/userfunc.o: userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
423 $(CCSYM) $@ userfunc.c |
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
424 |
7 | 425 obj/window.o: window.c |
426 $(CCSYM) $@ window.c |