1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-02 00:23:50 +03:00

r26186: Generate SWIG files as part of autogen.sh

This commit is contained in:
Jelmer Vernooij
2007-11-28 22:41:29 +01:00
committed by Stefan Metzmacher
parent 522d6591d7
commit 4429f8b87e
3 changed files with 14 additions and 4 deletions

View File

@@ -63,6 +63,16 @@ $AUTOCONF $IPATHS || exit 1
rm -rf autom4te*.cache
# Run swig if it is available
SWIG=swig
SWIG_FILES="./scripting/python/misc.i ./auth/auth.i ./auth/credentials/credentials.i ./lib/talloc/talloc.i ./lib/ldb/ldb.i ./lib/registry/registry.i ./lib/tdb/tdb.i ./libcli/swig/libcli_smb.i ./libcli/swig/libcli_nbt.i ./librpc/rpc/dcerpc.i"
if which $SWIG >/dev/null 2>&1; then
for I in $SWIG_FILES
do
echo "$0: running $SWIG for $I"
swig -python -keyword $I
done
fi
echo "Now run ./configure and then make."
exit 0

View File

@@ -279,7 +279,7 @@ distclean: clean
removebackup:
-rm -f *.bak *~ */*.bak */*~ */*/*.bak */*/*~ */*/*/*.bak */*/*/*~
realdistclean: distclean removebackup
realdistclean:: distclean removebackup
-rm -f include/config_tmp.h.in
-rm -f version.h
-rm -f configure

View File

@@ -22,14 +22,14 @@ swig: pythonmods
.i_wrap.c:
$(SWIG) -Wall -I$(srcdir)/scripting/swig -python -keyword $<
clean::
realdistclean::
@echo "Removing SWIG output files"
@-rm -f bin/python/*
# FIXME: Remove _wrap.c files
pythonmods: $(PYTHON_DSOS)
PYDOCTOR_MODULES=bin/python/ldb.py bin/python/auth.py bin/python/credentials.py bin/python/registry.py
PYDOCTOR_MODULES=bin/python/ldb.py bin/python/auth.py bin/python/credentials.py bin/python/registry.py bin/python/tdb.py
pydoctor:: pythonmods
LD_LIBRARY_PATH=bin/shared PYTHONPATH=bin/python pydoctor --make-html --docformat=restructuredtext --add-package scripting/python/samba/ $(addprefix --add-module , $(PYDOCTOR_MODULES))