summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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; }