📄 makefile.am
字号:
lib_LTLIBRARIES = libcfl.la libcfl_mt.la# Versioning rules ( C:R:A )# 1. Start with version 0:0:0.# 2. If the library source code has changed at all, incremement R.# 3. If any interfaces have been added, removed, or changed, increment C and# set R to 0.# 4. If any interfaces have been added, increment A.# 5. If any interfaces have been removed, set A to 0.# For more info see page 27 of the GNU Libtool Manual.VERINFO = -version-info 2:0:2libcfl_la_LDFLAGS = $(VERINFO)libcfl_mt_la_LDFLAGS = $(VERINFO)libsrc = bitstring.c btree.c byteord.c darray.c debug.c dlobject.c \ dstring.c error.c exec.c file.c fortune.c hashtab.c hex.c io.c \ linklist.c memfile.c memory.c netinfo.c pty.c random.c sched.c \ sem.c shmem.c signals.c sockctl.c sockio.c strheap.c strings.c \ strbuf.c system.c time.c timer.c tty.c vector.c version.c xml.c \ netcommon.h getXXbyYY_r.c getXXbyYY_r.h log.clibinc = cfl/cfl.h cfl/data.h cfl/defs.h cfl/cerrno.h cfl/fortune.h \ cfl/ipc.h cfl/net.h cfl/sched.h cfl/system.h cfl/util.h cfl/xml.h \ cfl/version.hlibcfl_la_SOURCES = $(libsrc)libcfl_mt_la_SOURCES = $(libsrc)libcfl_la_LIBADD =libcflags = -D_REENTRANT -I. libcfl_la_CFLAGS = $(libcflags)libcfl_mt_la_CFLAGS = $(libcflags) -DTHREADED_LIBRARY -D_POSIX_PTHREAD_SEMANTICScflincludedir = $(includedir)/cflcflinclude_HEADERS = $(libinc)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -