summaryrefslogtreecommitdiff
path: root/content/handlers/html/Makefile
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-04-29 20:37:42 +0100
committerVincent Sanders <vince@kyllikki.org>2020-04-29 20:37:42 +0100
commite8d0ba15ad4a91b4644cac0095f40bb3246ec509 (patch)
tree933e479208aec34f88b483b7e63c057d350339a0 /content/handlers/html/Makefile
parenta64261c3bdde79d11c86960181f7b8b5255539be (diff)
downloadnetsurf-e8d0ba15ad4a91b4644cac0095f40bb3246ec509.tar.gz
netsurf-e8d0ba15ad4a91b4644cac0095f40bb3246ec509.tar.bz2
split html box processing code
reduce the module size of the html box handling code by splitting into smaller sections. No functional code change.
Diffstat (limited to 'content/handlers/html/Makefile')
-rw-r--r--content/handlers/html/Makefile26
1 files changed, 21 insertions, 5 deletions
diff --git a/content/handlers/html/Makefile b/content/handlers/html/Makefile
index 6b4c1e8ee..19766247d 100644
--- a/content/handlers/html/Makefile
+++ b/content/handlers/html/Makefile
@@ -1,7 +1,23 @@
# HTML content handler sources
-S_HTML := box.c box_construct.c box_normalise.c box_textarea.c \
- font.c form.c imagemap.c layout.c search.c table.c \
- html.c html_css.c html_css_fetcher.c html_script.c \
- interaction.c html_redraw.c html_redraw_border.c \
- html_forms.c html_object.c
+S_HTML := box_construct.c \
+ box_inspect.c \
+ box_manipulate.c \
+ box_normalise.c \
+ box_special.c \
+ box_textarea.c \
+ font.c \
+ form.c \
+ imagemap.c \
+ layout.c \
+ search.c \
+ table.c \
+ html.c \
+ html_css.c \
+ html_css_fetcher.c \
+ html_script.c \
+ interaction.c \
+ html_redraw.c \
+ html_redraw_border.c \
+ html_forms.c \
+ html_object.c