view src/xxd/Make_amiga.mak @ 7264:b1b86aa171cd v7.4.940

commit https://github.com/vim/vim/commit/2a1b474fd82aff922f18570593972b12feaa2073 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 24 18:15:51 2015 +0100 patch 7.4.940 Problem: vt52 terminal codes are not correct. Solution: Move entries outside of #if. (Random) Adjustments based on documented codes.
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Nov 2015 18:30:04 +0100
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