makefile.am
来自「利用C语言实现的人工智能系统」· AM 代码 · 共 25 行
AM
25 行
## Process this file with automake to produce Makefile.in
SUBDIRS = .
bin_PROGRAMS = processor
# Lists the source code files that form the executable program
processor_SOURCES = uuid.c processor.c
# Lists the header files directories that are referenced in the program.
processor_INCLUDES = configure.h uuid.h processor.h
# Lists the public header files that we want to install on the client's prefix folder.
#processor_HEADERS =
# Lists the paths for all libraries that are linked into the program.
processor_LDFLAGS =
# Lists the libraries that are linked into the program.
processor_LDADD =
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?