Re: [PATCH] kselftest: add cleankselftest rule

2015-10-07 Thread long.wanglong
On 2015/10/2 22:18, Shuah Khan wrote: > On 09/30/2015 07:17 PM, Michael Ellerman wrote: >> On Wed, 2015-09-23 at 09:33 +, Wang Long wrote: >>> We use >>> >>> $make TARGETS="size timers" kselftest >>> >>> to build and run selftests. but there is no rule >>> for us to clean the kselftest gene

Re: [PATCH] kselftest: add cleankselftest rule

2015-10-02 Thread Shuah Khan
On 09/30/2015 07:17 PM, Michael Ellerman wrote: > On Wed, 2015-09-23 at 09:33 +, Wang Long wrote: >> We use >> >> $make TARGETS="size timers" kselftest >> >> to build and run selftests. but there is no rule >> for us to clean the kselftest generated files. >> >> This patch add the rules, fo

Re: [PATCH] kselftest: add cleankselftest rule

2015-09-30 Thread Michael Ellerman
On Wed, 2015-09-23 at 09:33 +, Wang Long wrote: > We use > > $make TARGETS="size timers" kselftest > > to build and run selftests. but there is no rule > for us to clean the kselftest generated files. > > This patch add the rules, for example: > > $ make TARGETS="size timers" clea

Re: [PATCH] kselftest: add cleankselftest rule

2015-09-30 Thread Shuah Khan
On 09/23/2015 03:33 AM, Wang Long wrote: > We use > > $make TARGETS="size timers" kselftest > > to build and run selftests. but there is no rule > for us to clean the kselftest generated files. > > This patch add the rules, for example: > > $ make TARGETS="size timers" cleankselftest

[PATCH] kselftest: add cleankselftest rule

2015-09-23 Thread Wang Long
We use $make TARGETS="size timers" kselftest to build and run selftests. but there is no rule for us to clean the kselftest generated files. This patch add the rules, for example: $ make TARGETS="size timers" cleankselftest can clean all kselftst generated files. Signed-off-by: Wa