CC = gcc
CFLAGS = -w -std=gnu99
CFLAGS += `gsl-config --cflags`
LDLIBS = `gsl-config --libs`

all: clean main; ./main
clean: ; $(RM) main
