# CC = gcc CFLAGS = -Wall -O3 LFLAGS = -O3 LIBS = -lgsl -lm all: three-body-restricted three-body-restricted: three-body-restricted.o ${CC} $(LFLAGS) -o $@ $^ $(LIBS) clean: rm -f *.o *~ veryclean: rm -f *.o *~ three-body-restricted