mirror of
https://github.com/RGBCube/serenity
synced 2026-01-12 23:01:01 +00:00
We're starting with a very basic decoding API and only ISO-8859-1 and UTF-8 decoding (and UTF-8 decoding is really a no-op since String is expected to be UTF-8.)
20 lines
547 B
Makefile
20 lines
547 B
Makefile
OBJS = \
|
|
BookmarksBarWidget.o \
|
|
InspectorWidget.o \
|
|
Tab.o \
|
|
WindowActions.o \
|
|
main.o
|
|
|
|
PROGRAM = Browser
|
|
|
|
LIB_DEPS = Web JS TextCodec 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
|