mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:27:35 +00:00

This also introduces a WindowActions collection of actions that are not specific to the currently open tab, but nevertheless part of its menus.
20 lines
537 B
Makefile
Executable file
20 lines
537 B
Makefile
Executable file
OBJS = \
|
|
BookmarksBarWidget.o \
|
|
InspectorWidget.o \
|
|
Tab.o \
|
|
WindowActions.o \
|
|
main.o
|
|
|
|
PROGRAM = Browser
|
|
|
|
LIB_DEPS = Web JS GUI 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
|