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.

16 lines
229 B

  1. #!/bin/bash
  2. INCLUDE_INSTALL_DIR="$1"/include
  3. LIBRARY_INSTALL_DIR="$1"/lib
  4. mkdir -p $INCLUDE_INSTALL_DIR
  5. mkdir -p $LIBRARY_INSTALL_DIR
  6. cp -vr include/*.h $INCLUDE_INSTALL_DIR
  7. cp -vr lib/lib*.a $LIBRARY_INSTALL_DIR
  8. exit 0;