mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +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.
18 lines
460 B
Makefile
18 lines
460 B
Makefile
OBJS = \
|
|
ClientConnection.o \
|
|
WavWriter.o \
|
|
WavLoader.o
|
|
|
|
LIBRARY = libaudio.a
|
|
|
|
ClientConnection.cpp: ../../Services/AudioServer/AudioClientEndpoint.h
|
|
../../Services/AudioServer/AudioClientEndpoint.h:
|
|
@flock $(dir $(@)) $(MAKE) -C $(dir $(@))
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibAudio/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibAudio/
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|