mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:38:12 +00:00
23 lines
524 B
Makefile
23 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
|