Mercurial > vim
annotate src/Make_morph.mak @ 6260:74c65620c985 v7.4.464
updated for version 7.4.464
Problem: Compiler warning.
Solution: Add type cast. (Ken Takata)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Mon, 06 Oct 2014 18:10:09 +0200 |
parents | ab71bb81b84e |
children | bce3b5ddb393 |
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 \ |
7 | 46 main.c \ |
47 mark.c \ | |
48 mbyte.c \ | |
49 memfile.c \ | |
50 memline.c \ | |
51 menu.c \ | |
52 message.c \ | |
53 misc1.c \ | |
54 misc2.c \ | |
55 move.c \ | |
56 normal.c \ | |
57 ops.c \ | |
58 option.c \ | |
59 os_amiga.c \ | |
800 | 60 popupmnu.c \ |
7 | 61 quickfix.c \ |
62 regexp.c \ | |
63 screen.c \ | |
64 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
65 sha256.c \ |
222 | 66 spell.c \ |
7 | 67 syntax.c \ |
68 tag.c \ | |
69 term.c \ | |
70 ui.c \ | |
71 undo.c \ | |
72 version.c \ | |
73 window.c \ | |
74 | |
75 OBJ = $(SRC:.c=.o) | |
76 | |
77 $(PRG): $(OBJ) | |
78 ${LD} -o $(PRG) $(OBJ) $(LIBS) | |
79 | |
80 dump: $(PRG) | |
81 $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s | |
82 | |
83 clean: | |
84 $(RM) -fv $(OBJ) $(PRG) $(PRG).s |