annotate src/xxd/Make_amiga.mak @ 22049:2b04c5bf4dc3
v8.2.1574
patch 8.2.1574: Vim9: glob() doesnot take "true" as argument
Commit: https://github.com/vim/vim/commit/5892ea151197c8a6363c7ce2322d84277b97353e
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Sep 2 21:53:11 2020 +0200
patch 8.2.1574: Vim9: glob() doesnot take "true" as argument
Problem: Vim9: glob() doesnot take "true" as argument.
Solution: Use tv_get_bool_chk(). (closes https://github.com/vim/vim/issues/6821)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Wed, 02 Sep 2020 22:00:05 +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
|