mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-19 03:48:18 +00:00
It didn't feel right to have a "DHCPClient" in a "Servers" directory. Rename this to Services to better reflect the type of programs we'll be putting in there.
25 lines
661 B
Makefile
25 lines
661 B
Makefile
OBJS = \
|
|
main.o \
|
|
ClientConnection.o \
|
|
NotificationWindow.o
|
|
|
|
PROGRAM = NotificationServer
|
|
|
|
LIB_DEPS = GUI Gfx Core IPC
|
|
|
|
EXTRA_CLEAN = NotificationServerEndpoint.h NotificationClientEndpoint.h
|
|
|
|
*.cpp: NotificationServerEndpoint.h NotificationClientEndpoint.h
|
|
|
|
NotificationServerEndpoint.h: NotificationServer.ipc | IPCCOMPILER
|
|
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
|
|
|
|
NotificationClientEndpoint.h: NotificationClient.ipc | IPCCOMPILER
|
|
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/NotificationServer/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/NotificationServer/
|
|
|
|
include ../../Makefile.common
|