[build] Tune wildcards for LIBSECP256K1 target

Automake would think the target was out of date every time because e.g. '.deps' was updated.
This commit is contained in:
Karl-Johan Alm 2018-03-26 18:36:17 +09:00
parent 7c32b414b6
commit 98b1813230
No known key found for this signature in database
GPG key ID: 57AF762DB3353322

View file

@ -53,7 +53,7 @@ LIBBITCOIN_CRYPTO_AVX2 = crypto/libbitcoin_crypto_avx2.a
LIBBITCOIN_CRYPTO += $(LIBBITCOIN_CRYPTO_AVX2)
endif
$(LIBSECP256K1): $(wildcard secp256k1/src/*) $(wildcard secp256k1/include/*)
$(LIBSECP256K1): $(wildcard secp256k1/src/*.h) $(wildcard secp256k1/src/*.c) $(wildcard secp256k1/include/*)
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C $(@D) $(@F)
# Make is not made aware of per-object dependencies to avoid limiting building parallelization