summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Ogden <bernie.ogden@linaro.org>2015-09-14 13:13:08 +0100
committerBernard Ogden <bernie.ogden@linaro.org>2015-09-14 13:14:55 +0100
commit3d97819478f338b6719a37828f441f4347819f1b (patch)
tree8b21afa966a293c518f6983e381a088aa06a454b
parentd15acdf2044facdd1d82119cd8af3b07551a5467 (diff)
Add a binary, so we've something to take the size ofHEADmaster
Change-Id: I41f2a01e096879f2e733c1866dd09eb58cbaa48f
-rw-r--r--Makefile1
-rw-r--r--hello.c3
2 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d91363a..8f9e9c4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
build:
+ $(CC) hello.c -o fake/hello
echo "Did build"
docs:
diff --git a/hello.c b/hello.c
new file mode 100644
index 0000000..7cda5b4
--- /dev/null
+++ b/hello.c
@@ -0,0 +1,3 @@
+#include <stdio.h>
+
+int main() { printf("Hello\n"); return 0; }