mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-02-19 16:04:31 +03:00
Add documentation showing unimplemented javascript bindings
This commit is contained in:
parent
b7eb35ef24
commit
d0371d5d3b
@ -681,7 +681,8 @@ INPUT = windows \
|
||||
javascript/jsapi \
|
||||
utils \
|
||||
utils/http \
|
||||
image
|
||||
image \
|
||||
Docs/UnimplementedJavascript.txt
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
|
||||
|
2390
Docs/UnimplementedJavascript.txt
Normal file
2390
Docs/UnimplementedJavascript.txt
Normal file
File diff suppressed because it is too large
Load Diff
4
Makefile
4
Makefile
@ -839,8 +839,8 @@ install: all-program install-$(TARGET)
|
||||
|
||||
.PHONY: docs
|
||||
|
||||
docs:
|
||||
doxygen Docs/Doxyfile
|
||||
docs: Docs/Doxyfile
|
||||
doxygen $<
|
||||
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
|
@ -72,7 +72,16 @@ BINDINGS := $(wildcard javascript/duktape/*.bnd)
|
||||
$(OBJROOT)/duktape/binding.h $(OBJROOT)/duktape/Makefile: javascript/duktape/netsurf.bnd $(BINDINGS)
|
||||
$(Q)mkdir -p $(OBJROOT)/duktape
|
||||
$(VQ)echo " GENBIND: $<"
|
||||
$(Q)nsgenbind -I javascript/WebIDL $< $(OBJROOT)/duktape
|
||||
$(Q)nsgenbind -D -g -I javascript/WebIDL $< $(OBJROOT)/duktape
|
||||
|
||||
# create unimplemented report for doxygen
|
||||
Docs/UnimplementedJavascript.txt: javascript/duktape/netsurf.bnd $(BINDINGS)
|
||||
$(Q)mkdir -p $(OBJROOT)/duktape
|
||||
$(VQ)echo "/** \page unimplemented Unimplemented javascript bindings" > $@
|
||||
$(VQ)echo "" >> $@
|
||||
$(VQ)echo " GENBIND: $<"
|
||||
$(Q)nsgenbind -Wunimplemented -I javascript/WebIDL $< $(OBJROOT)/duktape 2>&1 >/dev/null | grep "Unimplemented" | cut -d' ' -f4- | sort -k 2 | awk '{print $$0"\\n" }' >> $@
|
||||
$(VQ)echo "*/" >> $@
|
||||
|
||||
ifeq ($(filter $(MAKECMDGOALS),clean test coverage),)
|
||||
-include $(OBJROOT)/duktape/Makefile
|
||||
|
Loading…
x
Reference in New Issue
Block a user