11 lines
211 B
Makefile
Raw Normal View History

2025-09-27 00:33:35 +02:00
build:
gcc -D_GNU_SOURCE -O3 -march=native -mtune=native -flto -pthread rpubsub.c -o rpubsub -lrt -std=c11
gcc -O3 -march=native -std=c11 -o load_test load_test.c -lm -lrt
clean:
rm -f rpubsub load_test