Mercurial > vim
annotate src/Make_morph.mak @ 8116:3c1bdf20c8b9 v7.4.1352
commit https://github.com/vim/vim/commit/93bf558caef2d507ef6baf56eaf6025b63da1e34
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 18 22:25:47 2016 +0100
patch 7.4.1352
Problem: The test script lists all functions before executing them.
Solution: Only list the function currently being executed.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 18 Feb 2016 22:30:09 +0100 |
parents | bce3b5ddb393 |
children | 9b048dced116 |
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 | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
27 SRC = blowfish.c \ |
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
28 buffer.c \ |
7 | 29 charset.c \ |
6126 | 30 crypt.c \ |
31 crypt_zip.c \ | |
7 | 32 diff.c \ |
33 digraph.c \ | |
34 edit.c \ | |
35 eval.c \ | |
36 ex_cmds.c \ | |
37 ex_cmds2.c \ | |
38 ex_docmd.c \ | |
39 ex_eval.c \ | |
40 ex_getln.c \ | |
41 fileio.c \ | |
42 fold.c \ | |
43 getchar.c \ | |
440 | 44 hardcopy.c \ |
800 | 45 hashtab.c \ |
7712
bce3b5ddb393
commit https://github.com/vim/vim/commit/520e1e41f35b063ede63b41738c82d6636e78c34
Christian Brabandt <cb@256bit.org>
parents:
6126
diff
changeset
|
46 json.c \ |
7 | 47 main.c \ |
48 mark.c \ | |
49 mbyte.c \ | |
50 memfile.c \ | |
51 memline.c \ | |
52 menu.c \ | |
53 message.c \ | |
54 misc1.c \ | |
55 misc2.c \ | |
56 move.c \ | |
57 normal.c \ | |
58 ops.c \ | |
59 option.c \ | |
60 os_amiga.c \ | |
800 | 61 popupmnu.c \ |
7 | 62 quickfix.c \ |
63 regexp.c \ | |
64 screen.c \ | |
65 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
66 sha256.c \ |
222 | 67 spell.c \ |
7 | 68 syntax.c \ |
69 tag.c \ | |
70 term.c \ | |
71 ui.c \ | |
72 undo.c \ | |
73 version.c \ | |
74 window.c \ | |
75 | |
76 OBJ = $(SRC:.c=.o) | |
77 | |
78 $(PRG): $(OBJ) | |
79 ${LD} -o $(PRG) $(OBJ) $(LIBS) | |
80 | |
81 dump: $(PRG) | |
82 $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s | |
83 | |
84 clean: | |
85 $(RM) -fv $(OBJ) $(PRG) $(PRG).s |