view src/xxd/Make_amiga.mak @ 17286:a513b81d3689 v8.1.1642

patch 8.1.1642: may use uninitialized variable commit https://github.com/vim/vim/commit/ec572ad6a6cb0d4e71901951a70a4f038d48cb17 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 7 14:26:59 2019 +0200 patch 8.1.1642: may use uninitialized variable Problem: May use uninitialized variable. (Patrick Palka) Solution: Initialize variables earlier. (closes https://github.com/vim/vim/issues/4623)
author Bram Moolenaar <Bram@vim.org>
date Sun, 07 Jul 2019 14:30:04 +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