mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-08 14:50:26 +01:00
7f15f86718
Changelog-Added: libhsmd: Added python bindings for `libhsmd`
12 lines
373 B
Makefile
12 lines
373 B
Makefile
#!/usr/bin/make
|
|
|
|
LIBHSMD_PY_GEN_FILES := contrib/libhsmd_python/swig_wrap.c \
|
|
contrib/libhsmd_python/libhsmd.py
|
|
|
|
PYTHON_GENERATED += contrib/libhsmd_python/libhsmd.py
|
|
|
|
# Swig by default generates stubs in the file's directory, which is
|
|
# what we want.
|
|
$(LIBHSMD_PY_GEN_FILES): contrib/libhsmd_python/swig.i $(HSMD_SRC)
|
|
swig -python -builtin contrib/libhsmd_python/swig.i
|