makefile.am
来自「网络时间协议NTP 源码 版本v4.2.0b 该源码用于linux平台下」· AM 代码 · 共 46 行
AM
46 行
# Makefile for sntp# N.M. Maclaren, October 2000.# Take a look at README for the various preprocessor symbols, but they are# extremely unlikely to be needed on newer systems. You may prefer to change# LOCKNAME and SAVENAME to use /var/run (or even /tmp) rather than /etc. Note# that not all of the following system settings have been tested recently.AUTOMAKE_OPTIONS = foreign# Compiling this sort of ANSI C under SunOS 4.1 is a mug's game, because Sun's# Unix headers make GNU C vomit even in compatibility mode, but the following# will compile main.c and unix.c. At least two people have got it to work.# CC = gcc -ansi# CFLAGS = -O -DNONBLOCK_BROKEN# LDFLAGS =# LIBS = -lm# The following settings can be used under Linux. While adjtime is present,# it is completely broken (i.e. it will work only if xntp is running), so it# is a good idea to add -DADJTIME_MISSING.# CC = cc -DADJTIME_MISSING# CFLAGS = -O# LDFLAGS = # LIBS = -lmNULL=bindir= ${exec_prefix}/${BINSUBDIR}bin_PROGRAMS = sntpsntp_SOURCES = \ header.h \ internet.c \ internet.h \ kludges.h \ main.c \ socket.c \ timing.c \ unix.c \ $(NULL)dist_man_MANS= sntp.1include ../bincheck.mf
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?