mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 20:32:56 +03:00
a0ad372b08
This class was too small and unnecessary.
25 lines
582 B
Makefile
25 lines
582 B
Makefile
OBJS = \
|
|
main.o \
|
|
ASMixer.o \
|
|
ASClientConnection.o
|
|
|
|
PROGRAM = AudioServer
|
|
|
|
LIB_DEPS = Core IPC Thread Pthread
|
|
|
|
EXTRA_CLEAN = AudioServerEndpoint.h AudioClientEndpoint.h
|
|
|
|
*.cpp: AudioServerEndpoint.h AudioClientEndpoint.h
|
|
|
|
AudioServerEndpoint.h: AudioServer.ipc | IPCCOMPILER
|
|
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
|
|
|
|
AudioClientEndpoint.h: AudioClient.ipc | IPCCOMPILER
|
|
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/AudioServer/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/AudioServer/
|
|
|
|
include ../../Makefile.common
|