view src/xxd/Make_amiga.mak @ 25076:5690cf66ee07 v8.2.3075

patch 8.2.3075: xxd always reports an old version string Commit: https://github.com/vim/vim/commit/80b2ba3e9602e09ab523e78946fbb26da311b68b Author: =?UTF-8?q?J=C3=BCrgen=20Weigert?= <jnweiger@gmail.com> Date: Tue Jun 29 20:36:25 2021 +0200 patch 8.2.3075: xxd always reports an old version string Problem: Xxd always reports an old version string. (?smund Ervik) Solution: Update the version string with the last known change date. (J?rgen Weigert, closes #8475)
author Bram Moolenaar <Bram@vim.org>
date Tue, 29 Jun 2021 20:45:03 +0200
parents 3fc0f57ecb91
children
line wrap: on
line source

# Makefile for xxd on the Amiga, using Aztec/Manx C 5.0 or later
#

#>>>>> choose between debugging (-bs) or optimizing (-so)
OPTIONS = -so
#OPTIONS = -bs

#>>>>>> choose -g for debugging
LN_DEBUG =
#LN_DEBUG = -g

CFLAGS = $(OPTIONS) -wapruq -ps -qf -DAMIGA -Dconst=

Xxd: xxd.o
	ln +q -m $(LN_DEBUG) -o Xxd xxd.o -lc16

xxd.o: xxd.c
	cc $(CFLAGS) xxd.c -o xxd.o