view src/xxd/Makefile @ 3332:8a731d7f0664 v7.3.433

updated for version 7.3.433 Problem: Using continued lines in a Vim script can be slow. Solution: Instead of reallocating for every line use a growarray. (Yasuhiro Matsumoto)
author Bram Moolenaar <bram@vim.org>
date Sun, 05 Feb 2012 23:10:30 +0100
parents 3fc0f57ecb91
children 941f7dc1c7dd
line wrap: on
line source

# The most simplistic Makefile

xxd: xxd.c
	$(CC) $(CFLAGS) $(LDFLAGS) -DUNIX -o xxd xxd.c

clean:
	rm -f xxd xxd.o