mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:07:46 +00:00
18 lines
420 B
Makefile
18 lines
420 B
Makefile
LIBCRYPTO_OBJS = \
|
|
Cipher/AES.o \
|
|
Hash/MD5.o
|
|
|
|
OBJS = $(LIBCRYPTO_OBJS)
|
|
|
|
LIBRARY = libcrypto.a
|
|
|
|
install:
|
|
for dir in . Cipher Cipher/Mode Hash; do \
|
|
mkdir -p $(SERENITY_BASE_DIR)/Root/usr/include/LibCrypto/$$dir; \
|
|
cp $$dir/*.h $(SERENITY_BASE_DIR)/Root/usr/include/LibCrypto/$$dir/; \
|
|
done
|
|
cp $(LIBRARY) $(SERENITY_BASE_DIR)/Root/usr/lib/
|
|
|
|
include ../../Makefile.common
|
|
|
|
include ../../Makefile.subdir
|