mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 15:16:14 +00:00
This patchset adds a bookmark bar that is backed by a json file backend. The json file is loaded and checked for the format. According to the format, the bookmarks bar is populated with the bookmark items. If the bookmarks do not fit into one line, an expader button is shown that brings up a menu containing the missing bookmark items. There is currently no way to add or remove bookmarks. A hover over a bookmark is also not yet showing the url in the statusbar.
19 lines
500 B
Makefile
Executable File
19 lines
500 B
Makefile
Executable File
OBJS = \
|
|
main.o \
|
|
InspectorWidget.o \
|
|
BookmarksBarWidget.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
|