https://github.com/cooperative-computing-lab/cctools
Raw File
Tip revision: 35c52a71eb2d37439c0b4d4a855e0fe366146384 authored by Douglas Thain on 08 May 2013, 12:31:53 UTC
Check for possible failure of perl configuration if ExtUtils::Embed
Tip revision: 35c52a7
Makefile
include Makefile.config
include Makefile.rules

all clean: Makefile.config
	for p in ${CCTOOLS_PACKAGES} ; do cd $$p && ${MAKE} $@ && cd .. ; done

test: Makefile.config
	./run_all_tests.sh

install: all Makefile.config
	for p in ${CCTOOLS_PACKAGES} ; do cd $$p && ${MAKE} $@ && cd .. ; done
	mkdir -p ${CCTOOLS_INSTALL_DIR}/etc
	cp Makefile.config ${CCTOOLS_INSTALL_DIR}/etc/Makefile.config
	cp COPYING ${CCTOOLS_INSTALL_DIR}/doc

Makefile.config:
	@echo "You must run 'configure' before '${MAKE}'."
	@exit 1
back to top