diff options
| author | twells46 <tom@wellsth.com> | 2026-04-19 19:58:55 -0500 |
|---|---|---|
| committer | twells46 <tom@wellsth.com> | 2026-04-19 19:58:55 -0500 |
| commit | 9feeb1b7af3e4a5f5f9ec7529da062255578ec43 (patch) | |
| tree | ddfae64e45316a3c9eea4dcd77422bffc2003cf9 /makefile | |
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..c270347 --- /dev/null +++ b/makefile @@ -0,0 +1,13 @@ +CC=gcc + +LINK=-lpthread +DBGCFLAGS=-Wall -pedantic +CFLAGS=${DBGCFLAGS} -O3 -march=native + +def: sb26 + ./sb26 + +sb26: sb26.c + ${CC} ${CFLAGS} ${LINK} sb26.c -o sb26 + +.PHONY: def |
