aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-world/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello-world/Makefile')
-rw-r--r--examples/hello-world/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/hello-world/Makefile b/examples/hello-world/Makefile
new file mode 100644
index 0000000..56813e3
--- /dev/null
+++ b/examples/hello-world/Makefile
@@ -0,0 +1,6 @@
+CC = gcc
+
+hello-world:
+ $(CC) -o hello-world main.c -lbeaker
+clean:
+ rm hello-world \ No newline at end of file