benches/strings: add .gitignore and `make clean`
authorJean Privat <jean@pryen.org>
Fri, 3 Apr 2015 05:44:33 +0000 (12:44 +0700)
committerJean Privat <jean@pryen.org>
Fri, 3 Apr 2015 06:42:12 +0000 (13:42 +0700)
Signed-off-by: Jean Privat <jean@pryen.org>

benchmarks/strings/.gitignore [new file with mode: 0644]
benchmarks/strings/Makefile

diff --git a/benchmarks/strings/.gitignore b/benchmarks/strings/.gitignore
new file mode 100644 (file)
index 0000000..0e224dc
--- /dev/null
@@ -0,0 +1,4 @@
+arraytos/
+string_concat/
+string_iter/
+string_substr/
index 82118c9..a6d89bf 100644 (file)
@@ -11,3 +11,6 @@ iter:
 
 array:
        ./bench_strings.sh array 10 10000000 10
+
+clean:
+       rm -rf arraytos/ string_concat/ string_iter/ string_substr/ 2>/dev/null