mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
a4d857e3c5
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
|