50f2507016
Add Python bindings for a bare-bones set of libfdt functions. These allow navigating the tree and reading node names and properties. Signed-off-by: Simon Glass <sjg@chromium.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
17 lines
460 B
Makefile
17 lines
460 B
Makefile
# Makefile.pylibfdt
|
|
#
|
|
|
|
PYLIBFDT_srcs = $(addprefix $(LIBFDT_srcdir)/,$(LIBFDT_SRCS))
|
|
WRAP = $(PYLIBFDT_objdir)/libfdt_wrap.c
|
|
PYMODULE = $(PYLIBFDT_objdir)/_libfdt.so
|
|
|
|
$(PYMODULE): $(PYLIBFDT_srcs) $(WRAP)
|
|
@$(VECHO) PYMOD $@
|
|
python $(PYLIBFDT_objdir)/setup.py "$(CPPFLAGS)" $^
|
|
mv _libfdt.so $(PYMODULE)
|
|
|
|
$(WRAP): $(PYLIBFDT_srcdir)/libfdt.swig
|
|
@$(VECHO) SWIG $@
|
|
$(SWIG) -python -o $@ $<
|
|
|
|
PYLIBFDT_cleanfiles = libfdt_wrap.c libfdt.py libfdt.pyc _libfdt.so
|