1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

LibIPC: Start fleshing out a separate IPC library

This will be a place to put object serialization/deserialization logic,
message parsing, endpoint management, etc.
This commit is contained in:
Andreas Kling 2019-08-03 15:29:40 +02:00
parent aa8a3d4a89
commit a40e763b2a
7 changed files with 81 additions and 0 deletions

21
Libraries/LibIPC/Makefile Normal file
View file

@ -0,0 +1,21 @@
include ../../Makefile.common
OBJS = \
IEndpoint.o \
IMessage.o
LIBRARY = libipc.a
DEFINES += -DUSERLAND
all: $(LIBRARY)
$(LIBRARY): $(OBJS)
@echo "LIB $@"; $(AR) rcs $@ $(OBJS) $(LIBS)
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-include $(OBJS:%.o=%.d)
clean:
@echo "CLEAN"; rm -f $(LIBRARY) $(OBJS) *.d