⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 smtp客户端工具源代码。
💻 IN
字号:
####  Makefile -- smtpclient makefile##  Copyright (c) 1997 Ralf S. Engelschall, All Rights Reserved. ##@SET_MAKE@# ------------------------------------------------#   DEFINITIONS# ------------------------------------------------CC              = @CC@CFLAGS          = @CFLAGS@LDFLAGS         = @LDFLAGS@LIBS            = @LIBS@INSTALL         = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_SCRIPT  = @INSTALL_SCRIPT@INSTALL_DATA    = @INSTALL_DATA@MKDIR           = ./etc/mkinstalldirsprefix          = @prefix@# ------------------------------------------------#   THE DEFAULT TARGETS# ------------------------------------------------all: config smtpclient smtpclient.1# ------------------------------------------------#   THE CONFIGURATION SUPPORT# ------------------------------------------------config: configure config.h.inconfigure: configure.in 	rm -f configure	autoconf configure.in >configure	chmod 770 configureconfig.h.in: configure.in	rm -f config.h.in	autoheader configure.in >config.h.in# ------------------------------------------------#   THE RELEASE STUFF# ------------------------------------------------_GETDISTINFO = \    _version=`./etc/newvers -lc -d smtpclient_vers.c`; \    _date=`date '+%y%m%d_%H%M'`_BUILDDIST = \    echo "Creating tarball..."; \    tar cvf - * |\    tardy --user_number=1000  --user_name=rse \          --group_number=1000 --group_name=en \          --prefix=$${_distname} - |\    gzip >$${_tarball}; \    echo "Done"; \    ls -l $${_tarball}_NEWVERS = \    ./etc/newvers -lc -p SMTPclient $$OPT smtpclient_vers.c; \    V=`./etc/newvers -lc -D gfont_vers.c`;\    sed -e "s/Version .*(.*)/Version $$V/g" <README >README.n && mv README.n README_UPDATEVERS = \    V=`./etc/newvers -lc -d smtpclient_vers.c`;\    ./etc/newvers -lc -p SMTPclient -r $$V smtpclient_vers.c; \    V=`./etc/newvers -lc -D smtpclient_vers.c`;\    sed -e "s/Version .*(.*)/Version $$V/g" <README >README.n && mv README.n READMErelease: distclean fixperm	@$(_GETDISTINFO) \    _distname="smtpclient-$${_version}"; \    _tarball="/tmp/$${_distname}.tar.gz"; \    echo "Release Distribution: SMTPclient Version $$_version"; \    $(_BUILDDIST); \    mv /tmp/$${_distname}.tar.gz $${_distname}.tar.gz; \new-version:	OPT=-iv; $(_NEWVERS)new-revision:	OPT=-ir; $(_NEWVERS)new-betalevel:	OPT=-ib; $(_NEWVERS)new-patchlevel:	OPT=-iP; $(_NEWVERS)new-release:	OPT=-r$(R); $(_NEWVERS)update-version:	$(_UPDATEVERS)fixperm:	./etc/fixperm *# ------------------------------------------------#   THE PROGRAM# ------------------------------------------------smtpclient: smtpclient_main.o smtpclient_getopt.o smtpclient_errno.o smtpclient_vers.o 	$(CC) $(LDFLAGS) -o smtpclient smtpclient_main.o smtpclient_getopt.o smtpclient_errno.o smtpclient_vers.o $(LIBS)smtpclient_main.o: smtpclient_main.c	$(CC) $(CFLAGS) -o smtpclient_main.o -c smtpclient_main.csmtpclient_getopt.o: smtpclient_getopt.c	$(CC) $(CFLAGS) -o smtpclient_getopt.o -c smtpclient_getopt.csmtpclient_errno.o: smtpclient_errno.c	$(CC) $(CFLAGS) -o smtpclient_errno.o -c smtpclient_errno.csmtpclient_vers.o: smtpclient_vers.c	$(CC) $(CFLAGS) -o smtpclient_vers.o -c smtpclient_vers.c# ------------------------------------------------#   THE DOCUMENTATION# ------------------------------------------------smtpclient.1: smtpclient.pod	V=`./etc/newvers -l c -D smtpclient_vers.c`; \    sed -e "s|\@V\@|$$V|g" \        <smtpclient.pod >/tmp/smtpclient.pod; \    pod2man --section=1 \            --center="Ralf S. Engelschall" \            --release="EN" \            /tmp/smtpclient.pod >smtpclient.1 && \    rm -f /tmp/smtpclient.pod# ------------------------------------------------#   INSTALLATION# ------------------------------------------------install: all	$(MKDIR) $(prefix)/bin	$(MKDIR) $(prefix)/man/man1	$(INSTALL_PROGRAM) smtpclient $(prefix)/bin/smtpclient	$(INSTALL_DATA) smtpclient.1 $(prefix)/man/man1/smtpclient.1# ------------------------------------------------#   CLEANUP# ------------------------------------------------clean:	-rm -f *.o	-rm -f smtpclient 	-rm -f core *.coredistclean:	-@make clean	-rm -f config.h	-rm -f config.status config.cache config.log	-rm -f Makefile##EOF##

⌨️ 快捷键说明

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