[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_ntl / crypt

File: [local] / OpenXM / src / ox_ntl / crypt / Makefile (download)

Revision 1.3, Sun Jul 4 02:31:51 2004 UTC (19 years, 11 months ago) by iwane
Branch: MAIN
Changes since 1.2: +7 -10 lines

fixed a bug in Makefile(build-ntl)
CPP ==> CXX in Makefile

# $OpenXM: OpenXM/src/ox_ntl/crypt/Makefile,v 1.3 2004/07/04 02:31:51 iwane Exp $


SUBDIRS = radix sha1 rsa
OpenXM_HOME ?= ${PWD}/../../..

echo:
	@echo "'make compile': compile"
	@echo "'make clean'  : delete object file"

compile:
	@for _sub in ${SUBDIRS}; do (echo "(cd $${_sub}; make)"; cd $${_sub} && ${MAKE} OpenXM_HOME=${OpenXM_HOME}) || exit 1; done

clean:
	@for _sub in ${SUBDIRS}; do (echo "(cd $${_sub}; make $@)"; cd $${_sub} && ${MAKE} OpenXM_HOME=${OpenXM_HOME} $@) || exit 1; done