view src/xxd/Makefile @ 6068:353330c512a9 v7.4.373

updated for version 7.4.373 Problem: Compiler warning for unused argument and unused variable. Solution: Add UNUSED. Move variable inside #ifdef.
author Bram Moolenaar <bram@vim.org>
date Wed, 16 Jul 2014 23:39:54 +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