From 77afd633c610e8bfde1b66384e9309cdf249ccbb Mon Sep 17 00:00:00 2001 From: DrNuget Date: Wed, 29 Oct 2025 17:57:05 +0200 Subject: initial commit, only boilerplate --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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) -- cgit v1.2.3