mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-25 13:20:30 +00:00
16 lines
350 B
Makefile
16 lines
350 B
Makefile
|
|
OBJS = \
|
||
|
|
Decoder.o
|
||
|
|
|
||
|
|
LIBRARY = libtextcodec.a
|
||
|
|
|
||
|
|
install:
|
||
|
|
for dir in .; do \
|
||
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibTextCodec/$$dir; \
|
||
|
|
cp $$dir/*.h $(SERENITY_BASE_DIR)/Root/usr/include/LibTextCodec/$$dir/; \
|
||
|
|
done
|
||
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
||
|
|
|
||
|
|
include ../../Makefile.common
|
||
|
|
|
||
|
|
include ../../Makefile.subdir
|