makefile
来自「torch tracking code, it is a good code」· 代码 · 共 30 行
TXT
30 行
## Torch user Makefile example## Torch location.# Make sure to specify correct location...TORCHDIR := $(shell cd ../../..; pwd)## All that follows you can probably keep as is...#OS := $(shell uname -s)include $(TORCHDIR)/Makefile_options_$(OS)CC_FILES := $(shell ls *.cc)C_FILES := $(foreach f,$(CC_FILES),$(patsubst %,%,$(f)))BINARIES := $(foreach g,$(C_FILES),$(patsubst %.cc,%,$(g)))all: $(BINARIES)%: %.cc @echo "#" @echo "# Compiling "$@"..." @cd $(TORCHDIR); ${MAKE} -s @mkdir -p $(VERSION_KEY) @$(CC) $(CFLAGS_$(MODE)) $(INCS) -o $(VERSION_KEY)/$@ $< $(LIBS)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?