Mercurial > vim
annotate src/Make_morph.mak @ 2685:862d920800b1 v7.3.103
updated for version 7.3.103
Problem: Changing 'fileformat' and then using ":w" in an empty file sets
the 'modified' option.
Solution: In unchanged() don't ignore 'ff' for an empty file.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 22 Jan 2011 00:11:50 +0100 |
parents | 40edf1be1cd8 |
children | ab71bb81b84e |
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 \ |
30 diff.c \ | |
31 digraph.c \ | |
32 edit.c \ | |
33 eval.c \ | |
34 ex_cmds.c \ | |
35 ex_cmds2.c \ | |
36 ex_docmd.c \ | |
37 ex_eval.c \ | |
38 ex_getln.c \ | |
39 fileio.c \ | |
40 fold.c \ | |
41 getchar.c \ | |
440 | 42 hardcopy.c \ |
800 | 43 hashtab.c \ |
7 | 44 main.c \ |
45 mark.c \ | |
46 mbyte.c \ | |
47 memfile.c \ | |
48 memline.c \ | |
49 menu.c \ | |
50 message.c \ | |
51 misc1.c \ | |
52 misc2.c \ | |
53 move.c \ | |
54 normal.c \ | |
55 ops.c \ | |
56 option.c \ | |
57 os_amiga.c \ | |
800 | 58 popupmnu.c \ |
7 | 59 quickfix.c \ |
60 regexp.c \ | |
61 screen.c \ | |
62 search.c \ | |
2192
40edf1be1cd8
Add blowfish and sha256 source files to more Makefiles.
Bram Moolenaar <bram@vim.org>
parents:
800
diff
changeset
|
63 sha256.c \ |
222 | 64 spell.c \ |
7 | 65 syntax.c \ |
66 tag.c \ | |
67 term.c \ | |
68 ui.c \ | |
69 undo.c \ | |
70 version.c \ | |
71 window.c \ | |
72 | |
73 OBJ = $(SRC:.c=.o) | |
74 | |
75 $(PRG): $(OBJ) | |
76 ${LD} -o $(PRG) $(OBJ) $(LIBS) | |
77 | |
78 dump: $(PRG) | |
79 $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s | |
80 | |
81 clean: | |
82 $(RM) -fv $(OBJ) $(PRG) $(PRG).s |