summaryrefslogtreecommitdiff
path: root/build.sh
blob: 29b4092a911e609fe981d3122e31fb5a6c9297ff (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

CC=cc
SRC=./source/scb/scb.c
OUT=./build/scb

CFLAGS="-Wall -Wextra -Werror -Wpedantic -O0 -g -Wno-unused-function"

mkdir -p ./build

$CC $CFLAGS "$SRC" -o "$OUT"