📄 gnumakefile
字号:
# file: GNUmakefile## this make file builds the driver program using GNU make and# the isip make template# # define the source files#ISIP_FILES = *.cc# define the files these source files depend on (usually include files)#ISIP_DEPS = *.h# define the local include file path# ISIP_IFLAGS = -I$(ISIP_PROTO)/include# define the compilation flags: optimize and debug# ISIP_CFLAGS = -O2# define additional include libraries#ISIP_LFLAGS_BEFORE = -L$(ISIP_PROTO)/lib/$(ISIP_BINARY) -l_proto# define directory where binaries have to be dumped#ISIP_BIN = $(ISIP_PROTO)/bin/$(ISIP_BINARY)# define the name of the executable file (*.exe)#ISIP_EXE = init_triphones.exe# include the isip standard make template#include $(ISIP_PROTO)/lib/scripts/make/compile_and_link.make## end of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -