#Used to compile the Pareto and normal distribution 

OBJS    = pareto.o gauss.o 
CFLAGS = -g -O0
LIBS =-lm
LOADLIBES=-lm

all: pareto gauss

pareto: pareto.o
 
gauss: gauss.o

all: pareto gauss

clean:
	rm -f $(OBJS) 
	rm -f gauss pareto
