From e56ed2ffea0245eee3c08edd97d5e560a964c78d Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 16 Apr 2013 08:38:51 +0200 Subject: initial commit --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8c11863 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +# nthash - Generate NT Hash + +CC := gcc +CFLAGS += $(shell pkg-config --cflags --libs nettle) +VERSION = $(shell git describe --tags --long) + +all: nthash.c + $(CC) $(CFLAGS) -o nthash nthash.c + +clean: + /bin/rm -f *.o *~ nthash -- cgit v1.2.3-54-g00ecf