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

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

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

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

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