summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime/files/testmakefile
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2013-06-28 11:55:50 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-09 10:53:45 +0100
commit4285e856aa073979bf046168a75188ccf5a1e7d4 (patch)
tree1a146b3d4545cfd683e4d71588060d917af24a06 /meta/lib/oeqa/runtime/files/testmakefile
parent06d6f9d52e9cb636d007f35db38819eebf1f4000 (diff)
downloadpoky-4285e856aa073979bf046168a75188ccf5a1e7d4.tar.gz
lib/oeqa/runtime: add gcc test
gcc compile test and support files. (From OE-Core rev: ccbce75335971abf5098a492755e92ca60cf67bd) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/files/testmakefile')
-rw-r--r--meta/lib/oeqa/runtime/files/testmakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime/files/testmakefile b/meta/lib/oeqa/runtime/files/testmakefile
new file mode 100644
index 0000000000..ca1844e930
--- /dev/null
+++ b/meta/lib/oeqa/runtime/files/testmakefile
@@ -0,0 +1,5 @@
1test: test.o
2 gcc -o test test.o -lm
3test.o: test.c
4 gcc -c test.c
5