LDFLAGS = -lgsl -lgslcblas -lm

obj = main.o adapt.o

main: $(obj)
	$(CC) -o main $(obj) $(LDFLAGS) 

clean:
	rm -rf $(obj) main
