1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

AudioServer: Link against LibIPC

We're not using any of the functionality yet, but soon...
This commit is contained in:
Andreas Kling 2019-08-03 17:25:54 +02:00
parent 8dd07c3075
commit 3c1bad99a2
2 changed files with 2 additions and 1 deletions

View file

@ -14,7 +14,7 @@ DEFINES += -DUSERLAND
all: $(APP)
$(APP): $(OBJS)
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore -lipc
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<