###########################################################################
# Desc: Make file for gsl randist test
# Author: Andrew Howard
# Date: 6 Jun  2002
# CVS: $Id: Makefile,v 1.1 2003/01/20 07:24:28 ahoward Exp $
###########################################################################

APP = randist_test
OBS = randist_test.o

CFLAGS = -g3 -Wall 
LFLAGS = -lgsl -lgslcblas


###########################################################################
# Build section

all: $(APP)

$(APP) : $(OBS)
	$(CC) $(OBS) $(LFLAGS) -o $(APP)

%.o : %.c
	$(CC) $(CFLAGS) -c $< -o $@

clean:
	rm -f *~ *.o *.a *.so
