annotate src/xxd/Make_amiga.mak @ 22985:d768cdd50602
v8.2.2039
patch 8.2.2039: viminfo is not written when creating a new file
Commit: https://github.com/vim/vim/commit/8e6be34338f13a6a625f19bcef82019c9adc65f2
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Nov 23 22:01:26 2020 +0100
patch 8.2.2039: viminfo is not written when creating a new file
Problem: Viminfo is not written when creating a new file.
Solution: Set "b_marks_read" in the new buffer. (Christian Brabandt,
closes #7350)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 23 Nov 2020 22:15:05 +0100 |
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
|