You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
220 B
14 lines
220 B
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
INCLUDE_INSTALL_DIR="$1"/include
|
|
LIBRARY_INSTALL_DIR="$1"/lib
|
|
|
|
mkdir -p $INCLUDE_INSTALL_DIR
|
|
mkdir -p $LIBRARY_INSTALL_DIR
|
|
|
|
cp -vr include/*.h $INCLUDE_INSTALL_DIR
|
|
|
|
cp -vr lib/lib*.a $LIBRARY_INSTALL_DIR
|