annotate src/Make_ami.mak @ 29247:5f314b2ed494 v8.2.5142

patch 8.2.5142: startup test fails if there is a status bar Commit: https://github.com/vim/vim/commit/fa04eae5a5b9394079bde2d37ce6f9f8a5567d48 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 21 14:38:40 2022 +0100 patch 8.2.5142: startup test fails if there is a status bar Problem: Startup test fails if there is a status bar at the top of the screen. (Ernie Rael) Solution: Use a larger vertical offset in the test.
author Bram Moolenaar <Bram@vim.org>
date Tue, 21 Jun 2022 18:45:07 +0200
parents 4b23672d1f0e
children ce8545612296
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 += \
25529
bb1097899693 patch 8.2.3301: memory allocation functions don't have their own place
Bram Moolenaar <Bram@vim.org>
parents: 25206
diff changeset
83 alloc.c \
22198
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
84 arabic.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
85 arglist.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
86 autocmd.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
87 beval.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
88 blob.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
89 blowfish.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
90 buffer.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
91 bufwrite.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
92 change.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
93 charset.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
94 cindent.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
95 clientserver.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
96 clipboard.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
97 cmdhist.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
98 cmdexpand.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.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
100 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
101 debugger.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
102 dict.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
103 diff.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
104 digraph.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
105 drawline.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
106 drawscreen.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
107 edit.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
108 eval.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
109 evalbuffer.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
110 evalfunc.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
111 evalvars.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
112 evalwindow.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_cmds.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_cmds2.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_docmd.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_eval.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
117 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
118 fileio.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
119 filepath.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
120 findfile.c \
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents: 22198
diff changeset
121 float.c \
22198
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
122 fold.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
123 getchar.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
124 hardcopy.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
125 hashtab.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
126 help.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
127 highlight.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
128 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
129 indent.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
130 insexpand.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
131 json.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
132 list.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
133 locale.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
134 main.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
135 mark.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
136 map.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
137 match.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
138 mbyte.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
139 memfile.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
140 memline.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
141 menu.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
142 message.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
143 misc1.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
144 misc2.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
145 mouse.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
146 move.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
147 normal.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
148 ops.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
149 option.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
150 optionstr.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
151 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
152 popupmenu.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
153 popupwin.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
154 quickfix.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
155 regexp.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
156 register.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
157 screen.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
158 scriptfile.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
159 search.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
160 session.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
161 sha256.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
162 sign.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
163 spell.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
164 spellfile.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
165 spellsuggest.c \
25206
dc66d0284518 patch 8.2.3139: functions for string manipulation are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
166 strings.c \
22198
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
167 syntax.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
168 tag.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
169 term.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
170 termlib.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
171 testing.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
172 textformat.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
173 textobject.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
174 textprop.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
175 time.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
176 typval.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
177 ui.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
178 undo.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
179 usercmd.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
180 userfunc.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
181 version.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
182 viminfo.c \
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
183 vim9cmds.c \
22198
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
184 vim9compile.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
185 vim9execute.c \
26662
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
186 vim9expr.c \
4b23672d1f0e patch 8.2.3860: Vim9: codecov struggles with the file size
Bram Moolenaar <Bram@vim.org>
parents: 25529
diff changeset
187 vim9instr.c \
22198
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
188 vim9script.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
189 vim9type.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
190 window.c \
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
191 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
192 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
193 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
194 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
195 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
196 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
197
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
198 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
199
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
200 # 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
201 $(BIN): $(OBJ)
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
202 ${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
203
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
204 # Clean up
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
205 .PHONY: clean
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
206 clean:
591f210d9324 patch 8.2.1648: Amiga: no common build file for Amiga (-like) systems
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
207 $(RM) -fv $(OBJ) $(BIN)