mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-04-23 13:04:43 +00:00
17 lines
390 B
Makefile
Executable File
17 lines
390 B
Makefile
Executable File
OBJS = \
|
|
main.o
|
|
|
|
PROGRAM = Browser
|
|
|
|
LIB_DEPS = GUI HTML Draw IPC Protocol Core
|
|
|
|
main.cpp: ../../Libraries/LibHTML/CSS/PropertyID.h
|
|
../../Libraries/LibHTML/CSS/PropertyID.h:
|
|
@$(MAKE) -C ../../Libraries/LibHTML
|
|
|
|
main.cpp: ../../Servers/ProtocolServer/ProtocolClientEndpoint.h
|
|
../../Servers/ProtocolServer/ProtocolClientEndpoint.h:
|
|
@$(MAKE) -C $(dir $(@))
|
|
|
|
include ../../Makefile.common
|