diff options
Diffstat (limited to 'utils/cert_hash/Makefile')
-rw-r--r-- | utils/cert_hash/Makefile | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/utils/cert_hash/Makefile b/utils/cert_hash/Makefile deleted file mode 100644 index a9e9c52c..00000000 --- a/utils/cert_hash/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -# $Id$ - -OPENSSL_DIR = ../../openssl/openssl - -CFLAGS = -g -I${OPENSSL_DIR}/include - -# -H -Wl,-t - -BIN = cert_hash -OBJ = cert_hash.o -LIB = ${OPENSSL_DIR}/libcrypto.a - -all: ${BIN} - -clean: - rm -f ${BIN} ${OBJ} - -${BIN}: ${OBJ} ${LIB} Makefile - ${CC} -g -o $@ ${OBJ} ${LIB} - -TARGET = ../../rpkid/testbed.dir/publication/localhost:4400/testbed/WOMBAT.cer - -test: all - if test -r ${TARGET}; then ./${BIN} ${TARGET}; openssl dgst -sha256 -c < ${TARGET}; else :; fi |