https://github.com/cooperative-computing-lab/cctools
Raw File
Tip revision: 385c935f1dc87eb55fc8cb9ed10181b324c460d6 authored by pdonnel3 on 02 November 2012, 19:37:06 UTC
Merging r2355 from /trunk:
Tip revision: 385c935
Makefile
include Makefile.config
include Makefile.rules

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

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