view src/xxd/Makefile @ 3108:8aca621c0091 v7.3.325

updated for version 7.3.325 Problem: A duplicated function argument gives an internal error. Solution: Give a proper error message. (based on patch by Tyru)
author Bram Moolenaar <bram@vim.org>
date Fri, 30 Sep 2011 16:39:48 +0200
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