cgal/Scripts/developer_scripts/do_what_i_mean

10 lines
133 B
Bash
Executable File

#!/bin/sh
[ -r CMakeLists.txt ] || cgal_create_cmake_script
[ -r Makefile ] || cmake .
if [ $? == 0 ]; then
make -f Makefile
fi