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
Notes: sideshowbarker 2024-07-19 10:36:49 +09:00

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