diff options
author | Stefano Cristiano <stefanocristiano82@gmail.com> | 2019-12-28 17:36:33 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-12-28 21:43:56 +0100 |
commit | fa8cec66279d1819a40d7b8ef04ced679bb2fd29 (patch) | |
tree | 8252722fb1612b6cd0fb2a6ffb2e2e49e74462d4 /Libraries | |
parent | 80556e6111c14e611e82312df306abb3bb98fe43 (diff) | |
download | serenity-fa8cec66279d1819a40d7b8ef04ced679bb2fd29.zip |
Build: Fix missing IPC dependency for LibHTML
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibHTML/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibHTML/Makefile b/Libraries/LibHTML/Makefile index 6ce339aedb..6d21f5b685 100644 --- a/Libraries/LibHTML/Makefile +++ b/Libraries/LibHTML/Makefile @@ -88,6 +88,10 @@ CSS/PropertyID.cpp: CSS/Properties.json $(GENERATE_CSS_PROPERTYID_CPP) @echo "GENERATE $@" $(QUIET) flock CSS $(GENERATE_CSS_PROPERTYID_CPP) $< > $@ +ResourceLoader.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h +../../Servers/ProtocolServer/ProtocolClientEndpoint.h: + @$(MAKE) -C $(dir $(@)) + EXTRA_CLEAN = CSS/DefaultStyleSheetSource.cpp CSS/PropertyID.h CSS/PropertyID.cpp OBJS = $(EXTRA_OBJS) $(LIBHTML_OBJS) |