Update makefile to be more silent and distclean removes tags file.
This commit is contained in:
parent
feb524931e
commit
65d4098d8e
1 changed files with 5 additions and 4 deletions
9
Makefile
9
Makefile
|
@ -1,14 +1,15 @@
|
||||||
CC := gcc
|
CC := gcc
|
||||||
|
|
||||||
all:
|
all:
|
||||||
bin/waf build
|
@bin/waf build
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
bin/waf clean
|
@bin/waf clean
|
||||||
|
|
||||||
distclean:
|
distclean:
|
||||||
bin/waf distclean
|
@bin/waf distclean
|
||||||
|
@rm tags
|
||||||
|
|
||||||
ctags:
|
ctags:
|
||||||
ctags `find -name \*.[ch]`
|
@ctags `find -name \*.[ch]`
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue