[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.5, Thu Jul 15 14:51:42 2004 UTC (19 years, 10 months ago) by iwane
Branch: MAIN
Changes since 1.4: +2 -2 lines

added cast-128 encryption algorithm

# $OpenXM: OpenXM/src/ox_ntl/crypt/Makefile,v 1.5 2004/07/15 14:51:42 iwane Exp $


SUBDIRS = radix sha1 rsa des cast5
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