https://github.com/cooperative-computing-lab/cctools
Raw File
Tip revision: 7fa44b2ccc63bd2dd7a60d6335e7951fda66d850 authored by Benjamin Tovar on 31 July 2013, 17:35:36 UTC
Bump to RELEASE 4.0.1
Tip revision: 7fa44b2
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