Mercurial > vim
annotate src/Make_morph.mak @ 18026:fa5278b7c49e
Added tag v8.1.2008 for changeset d19caa8516824987c4e1230533c8297f3205c2ba
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 08 Sep 2019 15:30:04 +0200 |
parents | cf8e0c7e0cb9 |
children | df5778d73320 |
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 \ |
17744
4a3dca734d36
patch 8.1.1869: code for the argument list is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17652
diff
changeset
|
28 arglist.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
|
29 autocmd.c \ |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
30 blowfish.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
31 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
|
32 change.c \ |
7 | 33 charset.c \ |
17779
87a8760babec
patch 8.1.1886: command line expansion code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17744
diff
changeset
|
34 cmdexpand.c \ |
17652
9efb4dda9720
patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17576
diff
changeset
|
35 cmdhist.c \ |
6126 | 36 crypt.c \ |
37 crypt_zip.c \ | |
16381
1dcbaa780b8e
patch 8.1.1195: Vim script debugger functionality needs cleanup
Bram Moolenaar <Bram@vim.org>
parents:
16142
diff
changeset
|
38 debugger.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
39 dict.c \ |
7 | 40 diff.c \ |
41 digraph.c \ | |
42 edit.c \ | |
43 eval.c \ | |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
44 evalbuffer.c \ |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
45 evalfunc.c \ |
17873
d50a5faa75bd
patch 8.1.1933: the eval.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17861
diff
changeset
|
46 evalvars.c \ |
18010
cf8e0c7e0cb9
patch 8.1.2001: some source files are too big
Bram Moolenaar <Bram@vim.org>
parents:
17966
diff
changeset
|
47 evalwindow.c \ |
7 | 48 ex_cmds.c \ |
49 ex_cmds2.c \ | |
50 ex_docmd.c \ | |
51 ex_eval.c \ | |
52 ex_getln.c \ | |
53 fileio.c \ | |
17966
46f95606b9ec
patch 8.1.1979: code for handling file names is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17873
diff
changeset
|
54 filepath.c \ |
15814
99ebf78686a9
patch 8.1.0914: code related to findfile() is spread out
Bram Moolenaar <Bram@vim.org>
parents:
15699
diff
changeset
|
55 findfile.c \ |
7 | 56 fold.c \ |
57 getchar.c \ | |
440 | 58 hardcopy.c \ |
800 | 59 hashtab.c \ |
17389
635d7f5010b8
patch 8.1.1693: syntax coloring and highlighting is in one big file
Bram Moolenaar <Bram@vim.org>
parents:
17377
diff
changeset
|
60 highlight.c \ |
15699
2d941023bd2f
patch 8.1.0857: indent functionality is not separated
Bram Moolenaar <Bram@vim.org>
parents:
15634
diff
changeset
|
61 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
|
62 insexpand.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
63 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
64 list.c \ |
7 | 65 main.c \ |
17576
97a750e8707f
patch 8.1.1785: map functionality mixed with character input
Bram Moolenaar <Bram@vim.org>
parents:
17536
diff
changeset
|
66 map.c \ |
7 | 67 mark.c \ |
68 mbyte.c \ | |
69 memfile.c \ | |
70 memline.c \ | |
71 menu.c \ | |
72 message.c \ | |
73 misc1.c \ | |
74 misc2.c \ | |
75 move.c \ | |
76 normal.c \ | |
77 ops.c \ | |
78 option.c \ | |
79 os_amiga.c \ | |
800 | 80 popupmnu.c \ |
17370
ba06a1c42274
patch 8.1.1684: profiling functionality is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16632
diff
changeset
|
81 profiler.c \ |
7 | 82 quickfix.c \ |
83 regexp.c \ | |
17861
0a5c615cd949
patch 8.1.1927: code for dealing with script files is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17779
diff
changeset
|
84 scriptfile.c \ |
7 | 85 screen.c \ |
86 search.c \ | |
17536
e00d12c085a5
patch 8.1.1766: code for writing session file is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17458
diff
changeset
|
87 session.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
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 \ | |
17377
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
95 testing.c \ |
cb008de2a6ec
patch 8.1.1687: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
17370
diff
changeset
|
96 textprop.c \ |
7 | 97 ui.c \ |
98 undo.c \ | |
16411
5b5c5daf57de
patch 8.1.1210: support for user commands is spread out
Bram Moolenaar <Bram@vim.org>
parents:
16381
diff
changeset
|
99 usercmd.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
100 userfunc.c \ |
7 | 101 version.c \ |
17458
cfdef48743ed
patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents:
17389
diff
changeset
|
102 viminfo.c \ |
7 | 103 window.c \ |
104 | |
105 OBJ = $(SRC:.c=.o) | |
106 | |
107 $(PRG): $(OBJ) | |
108 ${LD} -o $(PRG) $(OBJ) $(LIBS) | |
109 | |
110 dump: $(PRG) | |
111 $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s | |
112 | |
113 clean: | |
114 $(RM) -fv $(OBJ) $(PRG) $(PRG).s |