Mercurial > vim
annotate src/Make_morph.mak @ 12935:e952feb15951
Added tag v8.0.1343 for changeset 2ebc3df65ca2cae20a632c3bd151565d7edeed80
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 26 Nov 2017 14:30:05 +0100 |
parents | b0c7061d6439 |
children | a6330a49e036 |
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 \ |
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
28 blowfish.c \ |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
29 buffer.c \ |
7 | 30 charset.c \ |
6126 | 31 crypt.c \ |
32 crypt_zip.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
33 dict.c \ |
7 | 34 diff.c \ |
35 digraph.c \ | |
36 edit.c \ | |
37 eval.c \ | |
9571
5eaa708ab50d
commit https://github.com/vim/vim/commit/73dad1e64cb42842d8259cb1a255a6fa59822f76
Christian Brabandt <cb@256bit.org>
parents:
9564
diff
changeset
|
38 evalfunc.c \ |
7 | 39 ex_cmds.c \ |
40 ex_cmds2.c \ | |
41 ex_docmd.c \ | |
42 ex_eval.c \ | |
43 ex_getln.c \ | |
9403
9b048dced116
commit https://github.com/vim/vim/commit/75464dc434c43efac60e8bfd9bec2a8b736407e9
Christian Brabandt <cb@256bit.org>
parents:
7712
diff
changeset
|
44 farsi.c \ |
7 | 45 fileio.c \ |
46 fold.c \ | |
47 getchar.c \ | |
440 | 48 hardcopy.c \ |
800 | 49 hashtab.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
50 json.c \ |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
51 list.c \ |
7 | 52 main.c \ |
53 mark.c \ | |
54 mbyte.c \ | |
55 memfile.c \ | |
56 memline.c \ | |
57 menu.c \ | |
58 message.c \ | |
59 misc1.c \ | |
60 misc2.c \ | |
61 move.c \ | |
62 normal.c \ | |
63 ops.c \ | |
64 option.c \ | |
65 os_amiga.c \ | |
800 | 66 popupmnu.c \ |
7 | 67 quickfix.c \ |
68 regexp.c \ | |
69 screen.c \ | |
70 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
71 sha256.c \ |
222 | 72 spell.c \ |
9583
b0c7061d6439
commit https://github.com/vim/vim/commit/9ccfebddc3ff2a3c2853cf706fd4c26f639bf381
Christian Brabandt <cb@256bit.org>
parents:
9571
diff
changeset
|
73 spellfile.c \ |
7 | 74 syntax.c \ |
75 tag.c \ | |
76 term.c \ | |
77 ui.c \ | |
78 undo.c \ | |
9564
b6a459b326f3
commit https://github.com/vim/vim/commit/6583c44857368f28c802dabe10ac7b7b0c266f50
Christian Brabandt <cb@256bit.org>
parents:
9403
diff
changeset
|
79 userfunc.c \ |
7 | 80 version.c \ |
81 window.c \ | |
82 | |
83 OBJ = $(SRC:.c=.o) | |
84 | |
85 $(PRG): $(OBJ) | |
86 ${LD} -o $(PRG) $(OBJ) $(LIBS) | |
87 | |
88 dump: $(PRG) | |
89 $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s | |
90 | |
91 clean: | |
92 $(RM) -fv $(OBJ) $(PRG) $(PRG).s |