From 9feeb1b7af3e4a5f5f9ec7529da062255578ec43 Mon Sep 17 00:00:00 2001 From: twells46 Date: Sun, 19 Apr 2026 19:58:55 -0500 Subject: Initial commit --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 makefile (limited to 'makefile') 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 -- cgit v1.2.3