Initial commit
This commit is contained in:
commit
bd6bbe25c2
3 changed files with 238 additions and 0 deletions
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -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
|
Reference in a new issue