annotate src/xxd/Make_amiga.mak @ 22518:81ae5fa92928
v8.2.1807
patch 8.2.1807: can use :help in a terminal popup window
Commit: https://github.com/vim/vim/commit/349f609f8990a3aca9a4b8faa0585d75e03116db
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 6 20:46:49 2020 +0200
patch 8.2.1807: can use :help in a terminal popup window
Problem: Can use :help in a terminal popup window.
Solution: Give an error. (closes https://github.com/vim/vim/issues/7088)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Tue, 06 Oct 2020 21:00:03 +0200 |
parents |
3fc0f57ecb91 |
children |
|
rev |
line source |
7
|
1 # Makefile for xxd on the Amiga, using Aztec/Manx C 5.0 or later
|
|
2 #
|
|
3
|
|
4 #>>>>> choose between debugging (-bs) or optimizing (-so)
|
|
5 OPTIONS = -so
|
|
6 #OPTIONS = -bs
|
|
7
|
|
8 #>>>>>> choose -g for debugging
|
|
9 LN_DEBUG =
|
|
10 #LN_DEBUG = -g
|
|
11
|
|
12 CFLAGS = $(OPTIONS) -wapruq -ps -qf -DAMIGA -Dconst=
|
|
13
|
|
14 Xxd: xxd.o
|
|
15 ln +q -m $(LN_DEBUG) -o Xxd xxd.o -lc16
|
|
16
|
|
17 xxd.o: xxd.c
|
|
18 cc $(CFLAGS) xxd.c -o xxd.o
|