diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-11-15 10:55:49 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2017-11-15 10:55:49 +0100 |
commit | 418d1d85abe6438da9f25c299e1031dc6eb312aa (patch) | |
tree | d9bdec768f7547a0fe3c70d5dfca3e83fe88f68d /Makefile | |
parent | bd6bbe25c29f019b259b8e66ba72d8a913f41118 (diff) | |
download | torrenthash-418d1d85abe6438da9f25c299e1031dc6eb312aa.tar torrenthash-418d1d85abe6438da9f25c299e1031dc6eb312aa.zip |
Use LDLIBS instead of LDFLAGSv1
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,8 +1,8 @@ CRYPTO_CFLAGS := $(shell pkg-config --cflags libcrypto) -CRYPTO_LDFLAGS := $(shell pkg-config --libs libcrypto) +CRYPTO_LDLIBS := $(shell pkg-config --libs libcrypto) CFLAGS += -Wall -Wextra $(CRYPTO_CFLAGS) -LDFLAGS += $(CRYPTO_LDFLAGS) +LDLIBS += $(CRYPTO_LDLIBS) all : torrenthash |