📄 makefile.dist
字号:
## This Makefile is designed to work on the old "make" program. It does# not use the obj subdirectory. It also does not install documentation# automatically -- think of it as a quick start for sites that have the# old make program (I recommend that you get and port the new make if you# are going to be doing any signficant work on sendmail).## @(#)Makefile.dist 8.1 (Berkeley) 11/27/93## use O=-O (usual) or O=-g (debugging)O= -O# location of sendmail source directorySRCDIR= ../src# define the database mechanisms available for map & alias lookups:# -DNDBM -- use new DBM# -DNEWDB -- use new Berkeley DB# The really old (V7) DBM library is no longer supported.#DBMDEF= -DNDBM -DNEWDB# environment definitions (e.g., -D_AIX3)ENVDEF=# see also conf.h for additional compilation flags# include directoriesINCDIRS=-I${SRCDIR} -I/usr/sww/include/db# loader optionsLDOPTS=# library directoriesLIBDIRS=-L/usr/sww/lib# libraries required on your systemLIBS= -ldb -ldbm# location of praliases binary (usually /usr/sbin or /usr/etc)BINDIR= ${DESTDIR}/usr/sbin# additional .o files neededOBJADD=################### end of user configuration flags ######################CFLAGS= -I. $O ${INCDIRS} ${DBMDEF} ${ENVDEF}OBJS= praliases.o ${OBJADD}LINKS= ${DESTDIR}/usr/ucb/newaliases ${DESTDIR}/usr/ucb/mailqBINOWN= binBINGRP= binBINMODE=555ALL= praliases praliases.0all: ${ALL}praliases: ${BEFORE} ${OBJS} ${CC} -o praliases ${LDOPTS} ${OBJS} ${LIBDIRS} ${LIBS}praliases.0: praliases.8 nroff -h -mandoc praliases.8 > praliases.0install: install-praliases install-docsinstall-praliases: praliases install -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} praliases ${BINDIR}# doesn't actually install them -- you may want to install pre-nroff versionsinstall-docs: praliases.0clean: rm -f ${OBJS} praliases praliases.0# dependencies# gross overkill, and yet still not quite enough....${OBJS}: ${SRCDIR}/conf.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -