I read build/envsetup.sh in android source code, and found a command
time make $@
in function mm.
But I don’t know the meaning about it. Who can I help me?
I read build/envsetup.sh in android source code, and found a command time make $@
Share
The
timecommand times the following command and outputs resource usage.makeis (usually) used for calculating dependencies and building source code.So
time make $@runs a timer, while building whichever parameters were passed in ($@).From your terminal, typing
man -s 1 timeandman -s 1 makewill give you more information.