# makefile
# Purpose: Create the EXECUTABLE for MathVec++

SRCDIR = src
EXEC = bin/MathVec++
MAKE = make
RM   = rm -rf

# To create the executable file in the bin directory, execute "make" or 
# "make MathVec++" on the command line

MeshFree++:	
	    cd $(SRCDIR); $(MAKE) MathVec++

clean :	
	    cd $(SRCDIR); $(MAKE) clean
