makefile.in

来自「LINUX下发送邮件的库,测试很好用,有各种发送测试的例子」· IN 代码 · 共 101 行

IN
101
字号
# Main Makefile for pushmail# Copyright (C) 2002 Timo Benk# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.# This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.# You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.mandir     = @mandir@sharedir   = @datadir@LIBSMTP     = libsmtp++-0.1.1.soCPP         = @CXX@CC          = @CC@CPPFLAGS    = @CPPFLAGS@ -pedantic -fPIC -Os -DLOCALEDIR=\"$(sharedir)/locale\" -WallLDFLAGS     = @LDFLAGS@ -s -Os -shared -Wl,-soname,libsmtp++.soLIBS        = @LIBS@INSTALL     = @INSTALL@prefix      = @prefix@exec_prefix = @exec_prefix@bindir      = $(exec_prefix)/binlibdir      = $(exec_prefix)/libincludedir  = $(exec_prefix)/includeOBJS=logger.o     \	 algorithm.o  \	 string.o     \	 init.o       \	 i18n.o       \	 socket.o     \	 sslsocket.o  \	 inetsocket.o \	 unixsocket.o \	 smtp.oall: libsmtp.soinstall:clean:	/bin/rm -f *.o	/bin/rm -f *.soinstall: all	$(INSTALL) -m 0755 -d $(libdir)	$(INSTALL) -m 0755 -d $(includedir)/libsmtp++	$(INSTALL) -m 0755 -d $(sharedir)/locale/de/LC_MESSAGES	$(INSTALL) -m 0755 -d $(sharedir)/locale/it/LC_MESSAGES	$(INSTALL) -m 0755 -d $(sharedir)/locale/ru/LC_MESSAGES	$(INSTALL) -m 0755 -d $(sharedir)/locale/es/LC_MESSAGES	$(INSTALL) -m 0644 $(LIBSMTP) $(libdir)	$(INSTALL) -m 0644 ../lang/de/libsmtp++.mo $(sharedir)/locale/de/LC_MESSAGES	$(INSTALL) -m 0644 ../lang/it/libsmtp++.mo $(sharedir)/locale/it/LC_MESSAGES	$(INSTALL) -m 0644 ../lang/ru/libsmtp++.mo $(sharedir)/locale/ru/LC_MESSAGES	$(INSTALL) -m 0644 ../lang/es/libsmtp++.mo $(sharedir)/locale/es/LC_MESSAGES	$(INSTALL) -m 0644 *.h $(includedir)/libsmtp++	../ldconfig.wrapper $(libdir)libsmtp.so: $(OBJS)	$(CC) $(LIBS) $(LDFLAGS) -o $(LIBSMTP) $(OBJS) string.o: 	$(CPP) $(CPPFLAGS) -fno-exceptions -c string.cpp  logger.o:		$(CPP) $(CPPFLAGS) -fno-exceptions -c logger.cpp i18n.o:		$(CPP) $(CPPFLAGS) -fno-exceptions -c i18n.cpp    socket.o:		$(CPP) $(CPPFLAGS) -c socket.cpp sslsocket.o:		$(CPP) $(CPPFLAGS) -c sslsocket.cppinetsocket.o:		$(CPP) $(CPPFLAGS) -c inetsocket.cppunixsocket.o:		$(CPP) $(CPPFLAGS) -c unixsocket.cppalgorithm.o:		$(CPP) $(CPPFLAGS) -c algorithm.cppsmtp.o:		$(CPP) $(CPPFLAGS) -c smtp.cppinit.o:		$(CPP) $(CPPFLAGS) -fno-exceptions -c init.cpp

⌨️ 快捷键说明

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