mirror of https://github.com/mpv-player/mpv
cosmetics: Merge shell commands into one line.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26354 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
fa4f36202e
commit
c4a51ba068
6
Makefile
6
Makefile
|
@ -326,12 +326,10 @@ strip:
|
||||||
strip -s $(ALL_PRG)
|
strip -s $(ALL_PRG)
|
||||||
|
|
||||||
TAGS:
|
TAGS:
|
||||||
rm -f $@; \
|
rm -f $@; ( find -name '*.[chS]' -print ) | xargs etags -a
|
||||||
( find -name '*.[chS]' -print ) | xargs etags -a
|
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
rm -f $@; \
|
rm -f $@; ( find -name '*.[chS]' -print ) | xargs ctags -a
|
||||||
( find -name '*.[chS]' -print ) | xargs ctags -a;
|
|
||||||
|
|
||||||
# ./configure must be rerun if it changed
|
# ./configure must be rerun if it changed
|
||||||
config.mak: configure
|
config.mak: configure
|
||||||
|
|
Loading…
Reference in New Issue