mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
24 lines
524 B
Makefile
24 lines
524 B
Makefile
OBJS = \
|
|
PSClientConnection.o \
|
|
Protocol.o \
|
|
Download.o \
|
|
HttpProtocol.o \
|
|
HttpDownload.o \
|
|
main.o
|
|
|
|
PROGRAM = ProtocolServer
|
|
|
|
LIB_DEPS = Core IPC
|
|
|
|
EXTRA_CLEAN = ProtocolServerEndpoint.h ProtocolClientEndpoint.h
|
|
|
|
*.cpp: ProtocolServerEndpoint.h ProtocolClientEndpoint.h
|
|
|
|
ProtocolServerEndpoint.h: ProtocolServer.ipc | IPCCOMPILER
|
|
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
|
|
|
|
ProtocolClientEndpoint.h: ProtocolClient.ipc | IPCCOMPILER
|
|
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
|
|
|
|
include ../../Makefile.common
|