← Back to ratslair.com
aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorr4tss <[email protected]>2023-06-17 00:02:03 +0200
committerGitHub <[email protected]>2023-06-17 00:02:03 +0200
commit7e08819a5586087ecc348ebbffc9fe87f590ed80 (patch)
treea808d15bf1b3505f6c57b4a4f0fcf104e473d274 /Makefile
parent313c26c5cbeb7022b633a94439e2c93ad29c6aa8 (diff)
Add files via upload
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e3ce72b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,10 @@
+##
+# Mine Sweeper
+#
+# @main.c
+# @version 0.1
+
+main: main.c
+ cc main.c -Wall -lSDL2 -lSDL2_ttf -o mine_sweeper
+
+# end