Browse Source

Makefile: erase libsecp results on distclean.

If upgrade changes configure flags, 'make distclean' can fail as it
tries to reconfigure.  Deleting secp256k1/libsecp256k1.la forces a
full autogen/configure/make cycle.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ppa-0.6.1
Rusty Russell 9 years ago
parent
commit
de90b44bf6
  1. 2
      Makefile

2
Makefile

@ -328,7 +328,7 @@ update-ccan:
distclean: clean
$(MAKE) -C secp256k1/ distclean || true
$(RM) libsecp256k1.a
$(RM) libsecp256k1.a secp256k1/libsecp256k1.la
maintainter-clean: distclean
@echo 'This command is intended for maintainers to use; it'

Loading…
Cancel
Save