2 Star 2 Fork 0

cgoxopx / psychic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
cgoxopx 提交于 2017-12-24 02:05 . init
SHELL=/bin/bash
CC=gcc
default: all
.PHONY: clean
demo:
cd src/demo/ && $(MAKE)
neural_cli:
cd src && $(MAKE)
test:
cd src/test && $(MAKE)
profile:
cd src/debug && $(MAKE)
clean:
if ! [ -e tmp/ ]; then mkdir tmp/; fi
if [ -e bin/README ]; then cp bin/README tmp/; fi
rm -f src/*.o
rm -f src/demo/*.o
rm -f src/test/*.o
rm -f bin/*
rm -f lib/*
if [ -e tmp/README ]; then cp tmp/README bin/; fi
if [ -e tmp/README ]; then cp tmp/README lib/; fi
install:
cd src && $(MAKE) install
uninstall:
cd src && $(MAKE) uninstall
all: neural_cli demo
C
1
https://gitee.com/cgoxopx/psychic.git
git@gitee.com:cgoxopx/psychic.git
cgoxopx
psychic
psychic
master

搜索帮助