view src/xxd/Makefile @ 18888:75e1ff65588e v8.2.0005

patch 8.2.0005: duplication in version info Commit: https://github.com/vim/vim/commit/502122565665674d914a1feeb15ac4a0bb0c8723 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 14 17:24:53 2019 +0100 patch 8.2.0005: duplication in version info Problem: Duplication in version info. Solution: Use preprocessor string concatenation. (Ken Takata, closes https://github.com/vim/vim/issues/5357)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Dec 2019 17:30:03 +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