8 lines
104 B
Bash
Executable file
8 lines
104 B
Bash
Executable file
#!/bin/bash
|
|
if make -j 8; then
|
|
if [ -x /usr/bin/optirun ]; then
|
|
optirun ./demo
|
|
else
|
|
./demo
|
|
fi
|
|
fi
|