| version 1.1, 2004/05/16 15:08:24 |
version 1.5, 2004/07/15 14:51:42 |
|
|
| # $Id$ |
# $OpenXM: OpenXM/src/ox_ntl/crypt/Makefile,v 1.4 2004/07/11 00:32:17 iwane Exp $ |
| |
|
| |
|
| all: |
SUBDIRS = radix sha1 rsa des cast5 |
| |
OpenXM_HOME ?= ${PWD}/../../.. |
| |
|
| |
echo: |
| @echo "'make compile': compile" |
@echo "'make compile': compile" |
| @echo "'make clean' : delete object file" |
@echo "'make clean' : delete object file" |
| |
|
| xxx: |
|
| (cd radix; make $(OPT)) |
|
| (cd sha1; make $(OPT)) |
|
| (cd rsa; make $(OPT)) |
|
| |
|
| |
|
| compile: |
compile: |
| make xxx OPT= OpenXM_HOME=${PWD}/../../.. |
@for _sub in ${SUBDIRS}; do (echo "(cd $${_sub}; make)"; cd $${_sub} && ${MAKE} OpenXM_HOME=${OpenXM_HOME}) || exit 1; done |
| |
|
| clean: |
clean: |
| make xxx OPT=clean |
@for _sub in ${SUBDIRS}; do (echo "(cd $${_sub}; make $@)"; cd $${_sub} && ${MAKE} OpenXM_HOME=${OpenXM_HOME} $@) || exit 1; done |
| |
|