view src/xxd/Makefile @ 6600:68e0e6bb8250 v7.4.626

updated for version 7.4.626 Problem: MSVC with W4 gives useless warnings. Solution: Disable more warnings. (Mike Williams)
author Bram Moolenaar <bram@vim.org>
date Tue, 10 Feb 2015 18:47:58 +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