aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2024-01-04 22:01:50 -0800
committerPreston Pan <preston@nullring.xyz>2024-01-04 22:01:50 -0800
commit3860d330a370b2cb2cf1a1b26fa91907a9748245 (patch)
treee22b813097c24730d33942677823a2d29b8f4bff /Makefile
first commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..5cc8982
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+##
+# Project Title
+#
+# @file
+# @version 0.1
+
+all:
+ cc *.c -o stem
+
+clean:
+ rm stem
+# end