1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 18:07:35 +00:00

LibHTML: Implement LayoutText

This commit is contained in:
Sergey Bugaev 2019-09-25 12:36:44 +03:00 committed by Andreas Kling
parent 9f8d776c70
commit 93003bfda1
4 changed files with 190 additions and 4 deletions

View file

@ -7,7 +7,7 @@ all: $(LIBRARY) tho
include Makefile.shared
tho: $(TEST_OBJS) $(LIBRARY)
$(LD) -o $@ $(LDFLAGS) -L. $(TEST_OBJS) -lhtml -lgui -lcore -lc
$(LD) -o $@ $(LDFLAGS) -L. $(TEST_OBJS) -lhtml -lgui -ldraw -lcore -lc
$(LIBRARY): $(LIBHTML_OBJS)
@echo "LIB $@"; $(AR) rcs $@ $(LIBHTML_OBJS)