Displaying 1 result from an estimated 1 matches for "swig_sourc".
Did you mean:
swig_sources
2007 Jun 04
0
Patch to enable python bindings in absence of docs build
..._SOURCES += except.i doccomments.i
+BUILT_SOURCES += except.i $(DOCCOMMENTS_I)
except.i: generate-python-exceptions ../../xapian-core/exception_data.pm
./generate-python-exceptions
@@ -79,9 +84,9 @@
test -f modern/xapian_wrap.stamp; exit $$?; \
fi; \
fi
-modern/xapian_wrap.stamp: $(SWIG_sources) util.i except.i doccomments.i extra.i extracomments.i
+modern/xapian_wrap.stamp: $(SWIG_sources) util.i except.i $(DOCCOMMENTS_I) extra.i extracomments.i
test -d modern || mkdir modern
- $(SWIG) $(SWIG_includes) $(SWIG_FLAGS) -c++ \
+ $(SWIG) $(SWIG_includes) $(SWIG_FLAGS) $(DOCCOMMENTS_I_FLAG...