summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authornasr <nsrddyn@gmail.com>2026-04-14 23:11:49 +0200
committernasr <nsrddyn@gmail.com>2026-04-14 23:11:49 +0200
commit154bf6f53529e88dfa03d6ff5034b575f92cdbb5 (patch)
tree04acbc1039719c610f11712b57e1786092f89242 /build.sh
parent4d2a2af0c7d4eec9a9e43e0ba08813fdebaf8f9c (diff)
feature(setup): base implementation
Diffstat (limited to 'build.sh')
-rwxr-xr-x[-rw-r--r--]build.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index e69de29..29b4092 100644..100755
--- a/build.sh
+++ b/build.sh
@@ -0,0 +1,11 @@
1#!/bin/sh
2
3CC=cc
4SRC=./source/scb/scb.c
5OUT=./build/scb
6
7CFLAGS="-Wall -Wextra -Werror -Wpedantic -O0 -g -Wno-unused-function"
8
9mkdir -p ./build
10
11$CC $CFLAGS "$SRC" -o "$OUT"