CC=gcc
CFLAGS=-O6 -W -Wall

all: stirmark

stirmark: stirmark.c
	$(CC) $(CFLAGS) -o stirmark stirmark.c -lm

clean:
	rm -f stirmark *~
