diff options
author | Vasant Hegde <hegdevasant@linux.vnet.ibm.com> | 2016-03-09 19:59:48 +0530 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-03-11 15:24:39 +1100 |
commit | 1c6af82325d84453711fb4929b64de089f6cb89d (patch) | |
tree | 76efb053f9fe6dc105e4b3c3727d24c1a495c069 /hdata | |
parent | 6641e4b442a9f44f3e62cbb0d7fc139c5e1e8052 (diff) | |
download | skiboot-1c6af82325d84453711fb4929b64de089f6cb89d.zip skiboot-1c6af82325d84453711fb4929b64de089f6cb89d.tar.gz skiboot-1c6af82325d84453711fb4929b64de089f6cb89d.tar.bz2 |
hdata/test: Fix 'make clean'
Remove *-gcov and *.d files.
Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hdata')
-rw-r--r-- | hdata/test/Makefile.check | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hdata/test/Makefile.check b/hdata/test/Makefile.check index 6575276..d9711a2 100644 --- a/hdata/test/Makefile.check +++ b/hdata/test/Makefile.check @@ -39,4 +39,5 @@ $(HDATA_TEST:%=%-gcov): %-gcov : %.c % clean: hdata-test-clean hdata-test-clean: - $(RM) hdata/test/*.o hdata/test/hdata_to_dt + $(RM) hdata/test/*.[od] hdata/test/hdata_to_dt + $(RM) $(HDATA_TEST) $(HDATA_TEST:%=%-gcov) |