diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2019-09-25 12:36:44 +0300 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-09-28 18:29:42 +0200 |
commit | 93003bfda1211288a1b9720e646d7f79dfa2f77c (patch) | |
tree | 46be823af3471e495588523c6f0ada8d6ba606a6 /Libraries/LibHTML/Makefile | |
parent | 9f8d776c70cb7eb15f6e5e2b4f1ca17bd55f5997 (diff) | |
download | serenity-93003bfda1211288a1b9720e646d7f79dfa2f77c.zip |
LibHTML: Implement LayoutText
Diffstat (limited to 'Libraries/LibHTML/Makefile')
-rw-r--r-- | Libraries/LibHTML/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibHTML/Makefile b/Libraries/LibHTML/Makefile index cc0848d309..1cc579355b 100644 --- a/Libraries/LibHTML/Makefile +++ b/Libraries/LibHTML/Makefile @@ -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) |