view src/xxd/Makefile @ 6041:761687c6808f v7.4.360

updated for version 7.4.360 Problem: In a regexp pattern a "$" followed by \v or \V is not seen as the end-of-line. Solution: Handle the situation. (Ozaki Kiichi)
author Bram Moolenaar <bram@vim.org>
date Wed, 09 Jul 2014 19:32:34 +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