?? makefile
字號:
## 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -