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

We're starting with a very basic decoding API and only ISO-8859-1 and UTF-8 decoding (and UTF-8 decoding is really a no-op since String is expected to be UTF-8.)
15 lines
350 B
Makefile
15 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
|