1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-12 23:01:01 +00:00
serenity/Applications/Browser/Makefile
Andreas Kling e09b83c60c LibTextCodec: Start fleshing out a simple text codec library
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.)
2020-05-03 23:01:58 +02:00

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