mconfig.in

来自「Linux下的TFTP源代码」· IN 代码 · 共 70 行

IN
70
字号
## -*- makefile -*- ------------------------------------------------------##   ##   Copyright 2001 H. Peter Anvin - All Rights Reserved####   This program is free software available under the same license##   as the "OpenBSD" operating system, distributed at##   http://www.openbsd.org/.#### ----------------------------------------------------------------------- ## $Id$#### MCONFIG.in#### Basic Makefile definitions### Source and object rootSRCROOT	    = @SRCROOT@OBJROOT     = @OBJROOT@# Prefixesprefix      = @prefix@exec_prefix = @exec_prefix@# Directory for user binariesBINDIR  = @bindir@# Man page treeMANDIR  = @mandir@# System binariesSBINDIR = @sbindir@# Binary suffixesO = @OBJEXT@X = @EXEEXT@# Install into alternate root area, e.g. for package generationINSTALLROOT = # LinkLN_S            = @LN_S@# Install programINSTALL         = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA    = @INSTALL_DATA@# Compiler and compiler flagsCC      = @CC@CFLAGS  = @CFLAGS@ -I$(SRCROOT)# Link flagsLDFLAGS = @LDFLAGS@# Libraries (client and server)TFTP_LIBS  = ../common/libcommon.a @TFTP_LIBS@TFTPD_LIBS = ../common/libcommon.a @TFTPD_LIBS@# Additional library we need to buildLIBOBJS	= @LIBOBJS@# Additional tftpd objects we need to buildTFTPDOBJS = @TFTPDOBJS@# ar and ranlib (for making libraries)AR	= ar cqRANLIB	= @RANLIB@

⌨️ 快捷键说明

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