# First, check whether or not the VisLib directory is set
ifndef VISLIB_DIR
$(error VISLIB_DIR environment variable is not defined!)
endif

all:
	cd src; make

clean:
	cd src; make clean
	rm -f lib/Image*.so lib/Process*.so lib/Observer*.so
	rm -f lib/libvislib.so
