view src/xxd/Makefile @ 5997:fd7110d0c3bf v7.4.339

updated for version 7.4.339 Problem: Local function is available globally. Solution: Add "static".
author Bram Moolenaar <bram@vim.org>
date Wed, 25 Jun 2014 14:44:10 +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