#@@@@@@@@@@@@@@@@@@@@@@@@@ Makefile @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
# Purpose: Compiles the MyGSL (source based on GNU scientific library). 
#          The archive is put to the ../Obj directory.
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

all:
	g++ -c *.c
	ar crv libmygsl.a *.o
	mv libmygsl.a ../Obj
	rm -f *.o
