#
#
#	PACKAGE:	SpatialIndex
#

# --- Targets ----------------------------------------------------------------

default: all

all clean :
	@ cd src; ${MAKE} $@
	@ cd app; ${MAKE} $@

libs :
	@ cd src; ${MAKE} all

apps : libs
	@ cd app; ${MAKE} all

linux :
	@ cd app; cp Makefile.linux Makefile
	@ cd src; cp Makefile.linux Makefile

irix :
	@ cd app; cp Makefile.irix Makefile
	@ cd src; cp Makefile.irix Makefile

osf :
	@ cd app; cp Makefile.osf Makefile
	@ cd src; cp Makefile.osf Makefile

solaris :
	@ cd app; cp Makefile.solaris Makefile
	@ cd src; cp Makefile.solaris Makefile

make tidy :
	@ cd src; ${MAKE} $@
	@ cd app; ${MAKE} $@

