mirror of
https://github.com/RGBCube/serenity
synced 2026-01-21 21:40:59 +00:00
Let's rename this to LibWeb since it aims to provide more parts of the web platform than just HTML. :^)
17 lines
473 B
Makefile
Executable file
17 lines
473 B
Makefile
Executable file
OBJS = \
|
|
main.o \
|
|
InspectorWidget.o
|
|
|
|
PROGRAM = Browser
|
|
|
|
LIB_DEPS = GUI Web Gfx IPC Protocol Core
|
|
|
|
main.cpp: ../../Libraries/LibWeb/CSS/PropertyID.h
|
|
../../Libraries/LibWeb/CSS/PropertyID.h:
|
|
@flock ../../Libraries/LibWeb $(MAKE) -C ../../Libraries/LibWeb
|
|
|
|
main.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h
|
|
../../Servers/ProtocolServer/ProtocolClientEndpoint.h:
|
|
@flock ../../Servers/ProtocolServer $(MAKE) -C $(dir $(@))
|
|
|
|
include ../../Makefile.common
|