10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ -r CMakeLists.txt ] || cgal_create_cmake_script
|
|
|
|
[ -r Makefile ] || cmake .
|
|
|
|
if [ $? == 0 ]; then
|
|
make -f Makefile ${1+"$@"}
|
|
fi
|