Mercurial > vim
annotate src/Make_ami.mak @ 22730:28001013f467 v8.2.1913
patch 8.2.1913: GTK GUI: rounding for the cell height is too strict
Commit: https://github.com/vim/vim/commit/70cf45810cb9be5bd17074f7fb4ee238f2c4d57b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 27 20:43:26 2020 +0100
patch 8.2.1913: GTK GUI: rounding for the cell height is too strict
Problem: GTK GUI: rounding for the cell height is too strict.
Solution: Round up above 15/16 of a pixel. (closes https://github.com/vim/vim/issues/7203)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 27 Oct 2020 20:45:03 +0100 |
parents | 591f210d9324 |
children | 7bc92a651472 |
rev | line source |
---|---|
22198
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 # |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 # Makefile for AROS, AmigaOS4 and MorphOS. |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 # |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 BIN = vim |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 CC ?= gcc |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 LD = $(CC) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 UNM ?= $(shell uname) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 DEBUG ?= no |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 BUILD ?= huge |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 CFLAGS = -c -O3 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 # Common compiler flags |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 CFLAGS += \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 -DNO_ARP \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 -DUSE_TMPNAM \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 -DHAVE_STDARG_H \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 -DHAVE_TGETENT \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 -DHAVE_TERMCAP \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 -DNEW_SHELLSIZE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 -I proto \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 -Wno-attributes \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
22 -Wextra |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
23 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
24 # Vim 'huge' build |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
25 ifeq ($(BUILD),huge) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
26 CFLAGS += \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
27 -DFEAT_BROWSE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
28 -DFEAT_MOUSE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
29 -DFEAT_HUGE |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
30 else |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
31 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
32 # Vim 'big' build |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
33 ifeq ($(BUILD),big) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
34 CFLAGS += \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
35 -DFEAT_BROWSE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
36 -DFEAT_MOUSE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
37 -DFEAT_BIG |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
38 else |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
39 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
40 # Vim 'normal' build |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
41 ifeq ($(BUILD),normal) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
42 CFLAGS +=\ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
43 -DFEAT_BROWSE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
44 -DFEAT_MOUSE \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
45 -DFEAT_NORMAL |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
46 else |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
47 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
48 # Vim 'small' build |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
49 ifeq ($(BUILD),small) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
50 CFLAGS += -DFEAT_SMALL |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
51 else |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
52 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
53 # Vim 'tiny' build |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
54 ifeq ($(BUILD),tiny) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
55 CFLAGS += -DFEAT_TINY |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
56 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
57 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
58 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
59 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
60 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
61 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
62 # OS specific compiler flags |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
63 ifeq ($(UNM),AmigaOS) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
64 LDFLAGS = -mcrt=clib2 -lauto -lm -lnet |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
65 CFLAGS += -DHAVE_FSYNC -D__USE_INLINE__ -mcrt=clib2 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
66 else |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
67 ifeq ($(UNM),AROS) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
68 LDFLAGS = -DHAVE_FSYNC -ldebug |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
69 else |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
70 ifeq ($(UNM),MorphOS) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
71 LDFLAGS = -ldebug -noixemul |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
72 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
73 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
74 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
75 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
76 # Patch level used for Amiga style version string |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
77 ifdef PATCHLEVEL |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
78 CFLAGS += -DPATCHLEVEL=\"$(PATCHLEVEL)\" |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
79 endif |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
80 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
81 # Common sources |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
82 SRC += \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
83 arabic.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
84 arglist.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
85 autocmd.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
86 beval.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
87 blob.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
88 blowfish.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
89 buffer.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
90 bufwrite.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
91 change.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
92 charset.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
93 cindent.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
94 clientserver.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
95 clipboard.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
96 cmdhist.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
97 cmdexpand.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
98 crypt.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
99 crypt_zip.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
100 debugger.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
101 dict.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
102 diff.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
103 digraph.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
104 drawline.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
105 drawscreen.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
106 edit.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
107 eval.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
108 evalbuffer.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
109 evalfunc.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
110 evalvars.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
111 evalwindow.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
112 ex_cmds.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
113 ex_cmds2.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
114 ex_docmd.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
115 ex_eval.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
116 ex_getln.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
117 fileio.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
118 filepath.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
119 findfile.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
120 fold.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
121 getchar.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
122 hardcopy.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
123 hashtab.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
124 help.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
125 highlight.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
126 if_cscope.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
127 indent.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
128 insexpand.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
129 json.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
130 list.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
131 locale.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
132 main.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
133 mark.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
134 map.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
135 match.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
136 mbyte.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
137 memfile.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
138 memline.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
139 menu.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
140 message.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
141 misc1.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
142 misc2.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
143 mouse.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
144 move.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
145 normal.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
146 ops.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
147 option.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
148 optionstr.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
149 os_amiga.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
150 popupmenu.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
151 popupwin.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
152 quickfix.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
153 regexp.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
154 register.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
155 screen.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
156 scriptfile.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
157 search.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
158 session.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
159 sha256.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
160 sign.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
161 spell.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
162 spellfile.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
163 spellsuggest.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
164 syntax.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
165 tag.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
166 term.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
167 termlib.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
168 testing.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
169 textformat.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
170 textobject.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
171 textprop.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
172 time.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
173 typval.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
174 ui.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
175 undo.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
176 usercmd.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
177 userfunc.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
178 version.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
179 viminfo.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
180 vim9compile.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
181 vim9execute.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
182 vim9script.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
183 vim9type.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
184 window.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
185 xdiff/xdiffi.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
186 xdiff/xemit.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
187 xdiff/xhistogram.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
188 xdiff/xpatience.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
189 xdiff/xprepare.c \ |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
190 xdiff/xutils.c |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
191 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
192 OBJ = $(SRC:.c=.o) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
193 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
194 # Build everything - Ignoring header dependencies. |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
195 $(BIN): $(OBJ) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
196 ${LD} -o $(BIN) $(OBJ) $(LDFLAGS) |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
197 |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
198 # Clean up |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
199 .PHONY: clean |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
200 clean: |
591f210d9324
patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
201 $(RM) -fv $(OBJ) $(BIN) |