makefile.am
来自「利用C语言实现的人工智能系统」· AM 代码 · 共 24 行
AM
24 行
## Process this file with automake to produce Makefile.in
SUBDIRS = .
bin_PROGRAMS = generator
# Lists the source code files that form the executable program
generator_SOURCES = generator.c channel0.c data.c database.c error.c \
file.c injection.c integration.c list.c object.c setting.c \
simulation.c sqlite3.c synapse.c util.c uuid.c xml.c
# Lists the header files directories that are referenced in the program.
generator_INCLUDES = -I/usr/local/include -I/home/ovi/source/aisystem/src
# Lists the paths for all libraries that are linked into the program.
generator_LDFLAGS = -L/usr/lib -L/usr/local/lib
# Lists the libraries that are linked into the program.
generator_LDADD = -ldl -lpthread -lm
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?