Build - Some improvements / fixes
+ fullclean no longer worked + F11 in vim
This commit is contained in:
parent
eab7b5f670
commit
3cf9e5c3ac
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
2
Makefile
2
Makefile
|
@ -87,7 +87,7 @@ clean:
|
|||
rm -f $(ALL_OBJS) $(FILEDUMPS) demo parsercheck $(PCH) $(OUTDIR)/font-awesome.inl
|
||||
|
||||
fullclean: clean
|
||||
@+make -C ebcl fullclean CONFIG=../ebcl-config
|
||||
@+make -C 3rdparty/ebcl fullclean CONFIG=../../ebcl-config
|
||||
rm -f $(ALL_DEPS) $(OUTDIR)/font-to-c
|
||||
|
||||
.PHONY: all clean fullclean
|
||||
|
|
Loading…
Reference in a new issue