diff options
| author | DrNuget <drnuget@outlook.com> | 2025-10-29 17:57:05 +0200 |
|---|---|---|
| committer | DrNuget <drnuget@outlook.com> | 2025-10-29 17:57:05 +0200 |
| commit | 77afd633c610e8bfde1b66384e9309cdf249ccbb (patch) | |
| tree | 89b3ded87a67220f2a762ff9ae16ab6171ea1fe0 /Makefile | |
| download | brailleboi-77afd633c610e8bfde1b66384e9309cdf249ccbb.tar.gz | |
initial commit, only boilerplate
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
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) |
