1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:37:47 +00:00

LibHTML: Create some subdirectories.

This commit is contained in:
Andreas Kling 2019-06-15 23:41:15 +02:00
parent 0522a8f71c
commit 1f51c2b7da
25 changed files with 49 additions and 50 deletions

View file

@ -1,17 +1,17 @@
include ../Makefile.common
LIBHTML_OBJS = \
Node.o \
ParentNode.o \
Element.o \
Document.o \
Text.o \
Parser.o \
LayoutNode.o \
LayoutText.o \
LayoutBlock.o \
LayoutInline.o \
LayoutDocument.o \
DOM/Node.o \
DOM/ParentNode.o \
DOM/Element.o \
DOM/Document.o \
DOM/Text.o \
Parser/Parser.o \
Layout/LayoutNode.o \
Layout/LayoutText.o \
Layout/LayoutBlock.o \
Layout/LayoutInline.o \
Layout/LayoutDocument.o \
Dump.o
TEST_OBJS = test.o