summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorc2024-02-21 08:57:01 -0500
committerc2024-02-21 08:57:01 -0500
commitb2e1e2412b175dfa224d18e66f87eaa282f3a4f6 (patch)
tree376a21c9599d76e85248304a3304040ca5f3ab75 /Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2699da9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,6 @@
+CC := gcc
+SRC := src/main.c
+LIBS := -lglfw -lGLEW
+
+all:
+ $(CC) $(SRC) $(LIBS) -o migt