mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00

This shaves ~5 seconds off of a full build, not too bad. Also it just seems nicer to push this logic out to classes. It could be better but it's a start. :^)
14 lines
293 B
Makefile
14 lines
293 B
Makefile
OBJS = \
|
|
Decoder.o \
|
|
Encoder.o \
|
|
Endpoint.o \
|
|
Message.o
|
|
|
|
LIBRARY = libipc.a
|
|
|
|
install:
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibIPC/
|
|
cp *.h $(SERENITY_BASE_DIR)/Root/usr/include/LibIPC/
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|