All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] fixes to clean up goip generates files and gitignore
@ 2017-04-22  0:12 Shuah Khan
  2017-04-22  0:13 ` [PATCH 1/2] selftests: add gpio generated files to .gitignore Shuah Khan
  2017-04-22  0:13 ` [PATCH 2/2] selftests: gpio: fix clean target to remove all generated files and dirs Shuah Khan
  0 siblings, 2 replies; 3+ messages in thread
From: Shuah Khan @ 2017-04-22  0:12 UTC (permalink / raw)
  To: shuah, bamvor.zhangjian
  Cc: Shuah Khan, linux-kselftest, linux-kernel, linux-gpio

This two patch series fixes gpio clean target to clean all generated
files and add them to gitignore.

Shuah Khan (2):
  selftests: add gpio generated files to .gitignore
  selftests: gpio: fix clean target to remove all generated files and
    dirs

 tools/testing/selftests/.gitignore    | 4 ++++
 tools/testing/selftests/gpio/Makefile | 8 +++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

-- 
2.9.3


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] selftests: add gpio generated files to .gitignore
  2017-04-22  0:12 [PATCH 0/2] fixes to clean up goip generates files and gitignore Shuah Khan
@ 2017-04-22  0:13 ` Shuah Khan
  2017-04-22  0:13 ` [PATCH 2/2] selftests: gpio: fix clean target to remove all generated files and dirs Shuah Khan
  1 sibling, 0 replies; 3+ messages in thread
From: Shuah Khan @ 2017-04-22  0:13 UTC (permalink / raw)
  To: shuah, bamvor.zhangjian
  Cc: Shuah Khan, linux-kselftest, linux-kernel, linux-gpio

gpio test generates files in selftests directory. Add them to .gitignore.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
---
 tools/testing/selftests/.gitignore | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/testing/selftests/.gitignore b/tools/testing/selftests/.gitignore
index f0600d2..9175035 100644
--- a/tools/testing/selftests/.gitignore
+++ b/tools/testing/selftests/.gitignore
@@ -1 +1,5 @@
 kselftest
+gpiogpio-event-mon
+gpiogpio-hammer
+gpioinclude/
+gpiolsgpio
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] selftests: gpio: fix clean target to remove all generated files and dirs
  2017-04-22  0:12 [PATCH 0/2] fixes to clean up goip generates files and gitignore Shuah Khan
  2017-04-22  0:13 ` [PATCH 1/2] selftests: add gpio generated files to .gitignore Shuah Khan
@ 2017-04-22  0:13 ` Shuah Khan
  1 sibling, 0 replies; 3+ messages in thread
From: Shuah Khan @ 2017-04-22  0:13 UTC (permalink / raw)
  To: shuah, bamvor.zhangjian
  Cc: Shuah Khan, linux-kselftest, linux-kernel, linux-gpio

gpio test creates executables, object files, and include directory
under selftests directory. Enhance clean target to remove all files
it generates.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
---
 tools/testing/selftests/gpio/Makefile | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/tools/testing/selftests/gpio/Makefile b/tools/testing/selftests/gpio/Makefile
index 4f6d9e0..298929d 100644
--- a/tools/testing/selftests/gpio/Makefile
+++ b/tools/testing/selftests/gpio/Makefile
@@ -2,13 +2,19 @@
 TEST_PROGS := gpio-mockup.sh
 TEST_FILES := gpio-mockup-sysfs.sh $(BINARIES)
 BINARIES := gpio-mockup-chardev
+EXTRA_PROGS := ../gpiogpio-event-mon ../gpiogpio-hammer ../gpiolsgpio
+EXTRA_DIRS := ../gpioinclude/
+EXTRA_OBJS := ../gpiogpio-event-mon-in.o ../gpiogpio-event-mon.o
+EXTRA_OBJS += ../gpiogpio-hammer-in.o ../gpiogpio-utils.o ../gpiolsgpio-in.o
+EXTRA_OBJS += ../gpiolsgpio.o
 
 include ../lib.mk
 
 all: $(BINARIES)
 
 override define CLEAN
-	$(RM) $(BINARIES)
+	$(RM) $(BINARIES) $(EXTRA_PROGS) $(EXTRA_OBJS)
+	$(RM) -r $(EXTRA_DIRS)
 endef
 
 CFLAGS += -O2 -g -std=gnu99 -Wall -I../../../../usr/include/
-- 
2.9.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-04-22  0:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-22  0:12 [PATCH 0/2] fixes to clean up goip generates files and gitignore Shuah Khan
2017-04-22  0:13 ` [PATCH 1/2] selftests: add gpio generated files to .gitignore Shuah Khan
2017-04-22  0:13 ` [PATCH 2/2] selftests: gpio: fix clean target to remove all generated files and dirs Shuah Khan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.