#!/bin/sh

gcc -o 1m LOOPS=1000000 testcase.c -lpthread
gcc -o 2m LOOPS=2000000 testcase.c -lpthread
gcc -o 3m LOOPS=3000000 testcase.c -lpthread
gcc -o 4m LOOPS=4000000 testcase.c -lpthread
gcc -o 5m LOOPS=5000000 testcase.c -lpthread
gcc -o 10m LOOPS=10000000 testcase.c -lpthread
gcc -o 20m LOOPS=20000000 testcase.c -lpthread
gcc -o 40m LOOPS=40000000 testcase.c -lpthread
