Ai
1 Star 0 Fork 1

Linteeh/BitCrack

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Makefile 245 Bytes
Copy Edit Raw Blame History
brichard19 authored 2018-02-22 10:51 +08:00 . -Added makefile for Linux build
NAME=cudautil
SRC=$(wildcard *.cpp)
OBJS=$(SRC:.cpp=.o)
all: ${SRC}
for file in ${SRC} ; do\
${CXX} -c $$file ${INCLUDE} -I${CUDA_INCLUDE} ${CXXFLAGS};\
done
mkdir -p ${LIBDIR}
ar rvs ${LIBDIR}/lib$(NAME).a ${OBJS}
clean:
rm -rf *.o
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Linteeh/BitCrack.git
git@gitee.com:Linteeh/BitCrack.git
Linteeh
BitCrack
BitCrack
master

Search