aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDrNuget <drnuget@outlook.com>2025-10-29 17:57:05 +0200
committerDrNuget <drnuget@outlook.com>2025-10-29 17:57:05 +0200
commit77afd633c610e8bfde1b66384e9309cdf249ccbb (patch)
tree89b3ded87a67220f2a762ff9ae16ab6171ea1fe0 /Makefile
downloadbrailleboi-77afd633c610e8bfde1b66384e9309cdf249ccbb.tar.gz
initial commit, only boilerplate
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..ba61ab3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+CC = gcc
+
+CFLAGS = -std=c99
+
+SRC = main.c brailleboi.c brailleboi.h
+
+TARGET = main
+
+.PHONY: build
+
+build:
+ $(CC) $(CFLAGS) -o $(TARGET) $(SRC)