WindowServer: Stop linking with LibAudio

This is no longer necessary, since the audio applet has been moved to
its own process.
This commit is contained in:
Andreas Kling 2019-12-16 15:36:13 +01:00
parent e1940f365b
commit 29e2ad47fd
Notes: sideshowbarker 2024-07-19 10:50:27 +09:00

View file

@ -33,7 +33,7 @@ WindowClientEndpoint.h: WindowClient.ipc
@echo "IPC $<"; $(IPCCOMPILER) $< > $@
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -ldraw -lcore -lthread -lpthread -laudio -lipc
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -ldraw -lcore -lthread -lpthread -lipc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<