makefile.in

来自「AIML的实现」· IN 代码 · 共 44 行

IN
44
字号
## Simple makefile to illustrate # how to build a project using RebeccaAIML### Where you installed the distribution#prefix=@BUILD_prefix@## Where you wanted the the lib# to be located.  This is usually# the same place as the prefix.#exec_prefix=@BUILD_exec_prefix@## Where the rebecca includes are#REBECCA_INCLUDES=@BUILD_includedir@## Where the rebecca shared object is #REBECCA_LIB=@BUILD_libdir@## Where to output the sample#REBECCA_OUTPUT=@BUILD_datadir@/Rebecca/bin/release${REBECCA_OUTPUT}/console: console.o	${CXX} -o ${REBECCA_OUTPUT}/console console.o -L${REBECCA_LIB} -lrebecca-mt -Wl,-rpath=${REBECCA_LIB}console.o: 	${CXX} -I${REBECCA_INCLUDES} -c console.cppclean:	-rm console.o		-rm ${REBECCA_OUTPUT}/console

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?