# DOCK docktools Makefile.
# This is for building the docktools executables from source files.
# It merely invokes make with the appropriate target, for example install
# or clean, in all the specified source subdirectories.

BIN = ../../bin/
SCRIPTS = make_phimap 

all: install

install:
	cd chemgrids && make install
	cd solvgrids && make install
	cd convgrids && make install
	cp $(SCRIPTS) $(BIN)

clean:
	cd chemgrids && make clean
	cd solvgrids && make clean
	cd convgrids && make clean

realclean:
	cd chemgrids && make realclean
	cd solvgrids && make realclean
	cd convgrids && make realclean

uninstall:
	cd chemgrids && make uninstall
	cd solvgrids && make uninstall
	cd convgrids && make uninstall
