first: setup

setting up repo.
This commit is contained in:
2026-08-29 13:48:15 -04:00
parent 5ffa549c89
commit c4d4f0b713
14 changed files with 1123 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
AM_CFLAGS = -Wall -Wextra -O2
bin_PROGRAMS = fastwc
fastwc_SOURCES = src/main.c
# Release build consumed by benchmarks/ (expects bin/release/fastwc).
release: all
$(MKDIR_P) bin/release
cp -f fastwc bin/release/fastwc
# Convenience: build the release binary, then run every benchmark suite.
bench: release
./benchmarks/test-all.sh
clean-local:
rm -rf bin
.PHONY: release bench