summaryrefslogtreecommitdiff
path: root/Servers/AudioServer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Servers/AudioServer/Makefile')
-rw-r--r--Servers/AudioServer/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Servers/AudioServer/Makefile b/Servers/AudioServer/Makefile
index 74b7b9c22d..e813207d10 100644
--- a/Servers/AudioServer/Makefile
+++ b/Servers/AudioServer/Makefile
@@ -1,7 +1,10 @@
include ../../Makefile.common
AUDIOSERVER_OBJS = \
- main.o
+ main.o \
+ ASMixer.o \
+ ASClientConnection.o \
+ ASEventLoop.o
APP = AudioServer
OBJS = $(AUDIOSERVER_OBJS)
@@ -11,7 +14,7 @@ DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
- $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -laudio
+ $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<