external: new subdirectory for all external libraries and submodules.

You will want to 'make distclean' after this.

I also removed libsecp; we use the one in in libwally anyway.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2017-08-29 01:41:01 +09:30
committed by Christian Decker
parent c6976cd947
commit f42f34b82d
363 changed files with 108 additions and 20853 deletions

8
external/libwally-core/tools/uncrustify vendored Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
# Use uncrustify to reformat the source
if test -z "$1"; then
files=`ls src/*.c src/*.h src/ctest/*.c include/*.h | grep -v src/config.h`
else
files="$*"
fi
uncrustify --replace --no-backup -c tools/uncrustify.cfg $files