ACLOCAL_AMFLAGS = -I config/m4 EXTRA_DIST = \ This-is-in-CIPRES_TOP.txt \ config/cipres_ant_defs.xml nobase_dist_noinst_SCRIPTS = cipres-build-scripts/bootstrap-perl-deps.pl SUBDIRS = framework package_data cipres-examples phyloservices ######################################################################## # phyloservices make install requires the service installer, # the service installer requires properties service # the properties service requires properties from package_data ######################################################################## install: cd framework && $(MAKE) $(AM_MAKEFLAGS) install && cd .. cd package_data && $(MAKE) $(AM_MAKEFLAGS) install && cd .. $(PYTHON) $(abs_top_srcdir)/cipres-build-scripts/launchBackground.py --exe=$(bindir)/user_propsvc.sh --dir=propSvcInstall --verbose cd phyloservices && $(MAKE) $(AM_MAKEFLAGS) install && cd .. cd cipres-examples && $(MAKE) $(AM_MAKEFLAGS) install && cd .. $(PYTHON) $(abs_top_srcdir)/cipres-build-scripts/launchBackground.py --kill --dir=propSvcInstall --verbose ######################################################################## # reverse order because phyloservice targets rely on binaries in the # installation for their uninstall targets. ######################################################################## uninstall: $(PYTHON) $(abs_top_srcdir)/cipres-build-scripts/launchBackground.py --exe=$(bindir)/user_propsvc.sh --dir=propSvcInstall --verbose cd phyloservices && $(MAKE) $(AM_MAKEFLAGS) uninstall && cd .. cd cipres-examples && $(MAKE) $(AM_MAKEFLAGS) uninstall && cd .. $(PYTHON) $(abs_top_srcdir)/cipres-build-scripts/launchBackground.py --kill --dir=propSvcInstall --verbose cd package_data && $(MAKE) $(AM_MAKEFLAGS) uninstall && cd .. cd framework && $(MAKE) $(AM_MAKEFLAGS) uninstall && cd ..