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

Build: Fix missing IPC dependency for Browser.

It forgot to compile IPC for ProtocolClient before building the browser.
This commit is contained in:
Valtteri Koskivuori 2019-12-27 16:11:22 +02:00 committed by Andreas Kling
parent 159289af03
commit 415a5d68ce

View file

@ -9,4 +9,8 @@ main.cpp: ../../Libraries/LibHTML/CSS/PropertyID.h
../../Libraries/LibHTML/CSS/PropertyID.h:
@$(MAKE) -C ../../Libraries/LibHTML
main.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h
../../Servers/ProtocolServer/ProtocolClientEndpoint.h:
@$(MAKE) -C $(dir $(@))
include ../../Makefile.common