Build - Some improvements / fixes

+ fullclean no longer worked
+ F11 in vim
This commit is contained in:
Emmanuel BENOîT 2017-11-22 20:35:05 +01:00
parent eab7b5f670
commit 3cf9e5c3ac
2 changed files with 6 additions and 2 deletions
.vim.local/scripts

View file

@ -1,4 +1,8 @@
#!/bin/bash
if make -j 8; then
optirun ./demo
if [ -x /usr/bin/optirun ]; then
optirun ./demo
else
./demo
fi
fi