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

all: install

install:
	cd schemgrid_GB && make install
	cd schemgrid_SA && make install

clean:
	cd schemgrid_GB && make clean
	cd schemgrid_SA && make clean

realclean:
	cd schemgrid_GB && make realclean
	cd schemgrid_SA && make realclean

uninstall:
	cd schemgrid_GB && make uninstall
	cd schemgrid_SA && make uninstall

