← Back to ratslair.com
aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEdvin Jakobsson <[email protected]>2023-06-30 15:53:03 +0200
committerEdvin Jakobsson <[email protected]>2023-06-30 15:53:03 +0200
commit57527c4dc73551a92fcf2f4a2bafdc7c5c8c1148 (patch)
treed3bdfed9bbaf99627b221195b89fa36da09db8f8 /Makefile
parentcc4d04bd07e3fad162d519dad9e742c78e716fb5 (diff)
Added rendering and movement
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..c4a6865
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+##
+# Doom
+#
+# @main.c
+# @version 0.1
+
+main: main.c
+ cc main.c -Wall -lSDL2 -lSDL2_ttf -lm -o doom
+# end