diff options
author | Aníbal Limón <anibal.limon@linux.intel.com> | 2016-11-09 15:03:52 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-23 12:05:19 +0000 |
commit | 9a23e0f703ec3ccb99b354102d804eda13543b23 (patch) | |
tree | 683d6001c61e3553ef2bcf6ac8f2b99c688a406a /meta/lib/oeqa/sdk | |
parent | 2726c26efe8e135bb63408cad38509a89e49fa0d (diff) | |
download | poky-9a23e0f703ec3ccb99b354102d804eda13543b23.tar.gz |
oeqa/{runtime,sdk}/files: Move testsdkmakefile from runtime to sdk module
It doesn't make sense to have files related to sdk module into runtime
module.
[YOCTO #10599]
(From OE-Core rev: 9a3be58b17afbe4ef00030b0e6ad8b20b03adc49)
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk')
-rw-r--r-- | meta/lib/oeqa/sdk/files/testsdkmakefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/lib/oeqa/sdk/files/testsdkmakefile b/meta/lib/oeqa/sdk/files/testsdkmakefile new file mode 100644 index 0000000000..fb05f822f3 --- /dev/null +++ b/meta/lib/oeqa/sdk/files/testsdkmakefile | |||
@@ -0,0 +1,5 @@ | |||
1 | test: test.o | ||
2 | $(CC) -o test test.o -lm | ||
3 | test.o: test.c | ||
4 | $(CC) -c test.c | ||
5 | |||