Mercurial > vim
annotate src/Make_morph.mak @ 17031:c3ca9d6be49a
Added tag v8.1.1515 for changeset 3e5ee8ce46719b42d3a2a30d3a19e18116772961
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 10 Jun 2019 15:00:08 +0200 |
parents | 30de89c1d090 |
children | ba06a1c42274 |
rev | line source |
---|---|
7 | 1 # |
2 # Makefile for VIM, using MorphOS SDK (gcc 2.95.3) | |
3 # | |
4 | |
5 CFLAGS = -c \ | |
6 -pipe \ | |
7 -O2 \ | |
8 -Wall \ | |
9 \ | |
10 -DNO_ARP \ | |
11 -DUSE_TMPNAM \ | |
12 \ | |
13 -I proto \ | |
14 \ | |
15 -noixemul | |
16 | |
17 PRG = Vim | |
18 LIBS = -noixemul -s | |
19 CC = gcc | |
20 LD = gcc | |
21 OBJDUMP = objdump | |
22 RM = rm | |
23 | |
24 .c.o: | |
25 ${CC} ${CFLAGS} $< -o $@ | |
26 | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
27 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
|
28 autocmd.c \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
29 blowfish.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
30 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
|
31 change.c \ |
7 | 32 charset.c \ |
6126 | 33 crypt.c \ |
34 crypt_zip.c \ | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
35 debugger.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
36 dict.c \ |
7 | 37 diff.c \ |
38 digraph.c \ | |
39 edit.c \ | |
40 eval.c \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
41 evalfunc.c \ |
7 | 42 ex_cmds.c \ |
43 ex_cmds2.c \ | |
44 ex_docmd.c \ | |
45 ex_eval.c \ | |
46 ex_getln.c \ | |
47 fileio.c \ | |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
48 findfile.c \ |
7 | 49 fold.c \ |
50 getchar.c \ | |
440 | 51 hardcopy.c \ |
800 | 52 hashtab.c \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
53 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
|
54 insexpand.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
55 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
56 list.c \ |
7 | 57 main.c \ |
58 mark.c \ | |
59 mbyte.c \ | |
60 memfile.c \ | |
61 memline.c \ | |
62 menu.c \ | |
63 message.c \ | |
64 misc1.c \ | |
65 misc2.c \ | |
66 move.c \ | |
67 normal.c \ | |
68 ops.c \ | |
69 option.c \ | |
70 os_amiga.c \ | |
800 | 71 popupmnu.c \ |
7 | 72 quickfix.c \ |
73 regexp.c \ | |
74 screen.c \ | |
75 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
76 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
|
77 sign.c \ |
222 | 78 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
79 spellfile.c \ |
7 | 80 syntax.c \ |
81 tag.c \ | |
82 term.c \ | |
83 ui.c \ | |
84 undo.c \ | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
85 usercmd.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
86 userfunc.c \ |
7 | 87 version.c \ |
88 window.c \ | |
89 | |
90 OBJ = $(SRC:.c=.o) | |
91 | |
92 $(PRG): $(OBJ) | |
93 ${LD} -o $(PRG) $(OBJ) $(LIBS) | |
94 | |
95 dump: $(PRG) | |
96 $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s | |
97 | |
98 clean: | |
99 $(RM) -fv $(OBJ) $(PRG) $(PRG).s |