mirror of
https://github.com/rvtr/ctr_eFuse.git
synced 2025-11-02 00:11:04 -04:00
・GenarateECCKeyPairの引数修正 git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_eFuse@33 ff987cc8-cf2f-4642-8568-d52cce064691
26 lines
463 B
Makefile
26 lines
463 B
Makefile
|
|
# OPENSSL = openssl-1.0.0-beta2
|
|
OPENSSL = openssl-0.9.8k
|
|
|
|
ifeq ($(DEV_CYGWIN),TRUE)
|
|
OPENSSL_CONFIG_TARGET = mingw
|
|
else
|
|
OPENSSL_CONFIG_TARGET =
|
|
endif
|
|
|
|
OUT_DIR = ../
|
|
|
|
.SUFFIXES:
|
|
|
|
.PHONY: all clobber
|
|
|
|
all: $(OUT_DIR)/$(OPENSSL)/libssl.a
|
|
|
|
$(OUT_DIR)/$(OPENSSL)/libssl.a : $(OPENSSL).tar.gz
|
|
tar xzvf $< -C $(OUT_DIR)
|
|
cd $(OUT_DIR)/$(OPENSSL);./Configure $(OPENSSL_CONFIG_TARGET);make build_libs;
|
|
|
|
clobber:
|
|
$(RM) -r $(OUT_DIR)/$(OPENSSL)
|
|
|