diff options
| author | nasr <nsrddyn@gmail.com> | 2026-04-14 23:11:49 +0200 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-04-14 23:11:49 +0200 |
| commit | 154bf6f53529e88dfa03d6ff5034b575f92cdbb5 (patch) | |
| tree | 04acbc1039719c610f11712b57e1786092f89242 /build.sh | |
| parent | 4d2a2af0c7d4eec9a9e43e0ba08813fdebaf8f9c (diff) | |
feature(setup): base implementation
Diffstat (limited to 'build.sh')
| -rwxr-xr-x[-rw-r--r--] | build.sh | 11 |
1 files changed, 11 insertions, 0 deletions
| @@ -0,0 +1,11 @@ | |||
| 1 | #!/bin/sh | ||
| 2 | |||
| 3 | CC=cc | ||
| 4 | SRC=./source/scb/scb.c | ||
| 5 | OUT=./build/scb | ||
| 6 | |||
| 7 | CFLAGS="-Wall -Wextra -Werror -Wpedantic -O0 -g -Wno-unused-function" | ||
| 8 | |||
| 9 | mkdir -p ./build | ||
| 10 | |||
| 11 | $CC $CFLAGS "$SRC" -o "$OUT" | ||
