Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'gcov/org.eclipse.linuxtools.gcov.test/resources/Gcov_CPP_test/Makefile')
-rw-r--r--gcov/org.eclipse.linuxtools.gcov.test/resources/Gcov_CPP_test/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcov/org.eclipse.linuxtools.gcov.test/resources/Gcov_CPP_test/Makefile b/gcov/org.eclipse.linuxtools.gcov.test/resources/Gcov_CPP_test/Makefile
new file mode 100644
index 0000000000..e3c2b86045
--- /dev/null
+++ b/gcov/org.eclipse.linuxtools.gcov.test/resources/Gcov_CPP_test/Makefile
@@ -0,0 +1,8 @@
+build a.out:
+ g++ -fprofile-arcs -ftest-coverage *.cpp
+
+all: a.out
+ ./$< 1 2 3 4 5 6
+
+clean:
+ rm -f *.o a.out *.gcno *.gcda

Back to the top