mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-15 16:48:24 +03:00
a40e763b2a
This will be a place to put object serialization/deserialization logic, message parsing, endpoint management, etc.
22 lines
335 B
Makefile
22 lines
335 B
Makefile
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
|