0 Star 43 Fork 32

Chuck / RSA

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
makefile 871 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chuck 提交于 2018-01-20 14:10 . Add 9x07 support
# x86
CC = gcc
RSA_SRC := main.c bignum.c prime.c rsa.c
APP = build/test
all:${APP}
${APP}:
${CC} -Wall ${RSA_SRC} -o $@
clean:
@rm -f ${APP}
# 9x07
# COMPILER_ROOT := /opt/ql-oe/sysroots
# CROSS_COMPILER := $(COMPILER_ROOT)/x86_64-linux/usr/bin/arm-oe-linux-gnueabi/arm-oe-linux-gnueabi-
# GCC_VERSION := 4.9.2
# TARGET_EXE := build/rsa
# LOCAL_SRC_FILES := main.c bignum.c prime.c rsa.c
# LOCAL_C_FLAGS := -march=armv7-a -mfloat-abi=softfp -mfpu=neon --sysroot=$(COMPILER_ROOT)/mdm9607 \
# -g -Wall -Wno-unused-function -pthread -Wno-unused-but-set-variable \
# -Wno-missing-braces
# all:$(TARGET_EXE)
# $(TARGET_EXE):
# $(CROSS_COMPILER)gcc $(LOCAL_C_FLAGS) $(INCLUDES) $(LOCAL_SRC_FILES) -o $@
# .PHONY: clean
# clean:
# @find build -name "*.o" -exec rm {} \;
# @find build -name $(notdir $(TARGET_EXE)) -exec rm {} \;
C
1
https://gitee.com/lch0821/RSA.git
git@gitee.com:lch0821/RSA.git
lch0821
RSA
RSA
master

搜索帮助