From bd6bbe25c29f019b259b8e66ba72d8a913f41118 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Tue, 14 Nov 2017 15:22:06 +0100 Subject: Initial commit --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..76c2ef8 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CRYPTO_CFLAGS := $(shell pkg-config --cflags libcrypto) +CRYPTO_LDFLAGS := $(shell pkg-config --libs libcrypto) + +CFLAGS += -Wall -Wextra $(CRYPTO_CFLAGS) +LDFLAGS += $(CRYPTO_LDFLAGS) + +all : torrenthash + +clean : + rm -f torrenthash -- cgit v1.2.3