代码拉取完成,页面将自动刷新
同步操作将从 HongDaYuGitee/ftplibpp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
# ftplibpp makefile
SONAME = 2
SOVERSION = $(SONAME).0
TARGETS = libftp++.a libftp++.so
OBJECTS = ftplib.o
SOURCES = ftplib.cpp
CFLAGS = -Wall $(DEBUG) -I. $(INCLUDES) $(DEFINES)
LDFLAGS = -L.
DEPFLAGS =
UNAME := $(shell uname)
ifeq ($(UNAME), Darwin)
SOFLAG=install_name
ifndef NOSSL
LIBS = -lssl -lcrypto
else
LIBS =
endif
endif
ifeq ($(UNAME), Linux)
SOFLAG=soname
ifndef NOSSL
LIBS = -lssl
else
LIBS =
endif
endif
all : $(TARGETS)
clean :
rm -f $(OBJECTS) core *.bak
rm -rf unshared
rm -f $(TARGETS) .depend
rm -f libftp.so.*
uninstall :
rm -f /usr/local/lib/libftp.so.*
rm -f /usr/local/include/libftp.h
install : all
install -m 644 libftp.so.$(SOVERSION) /usr/local/lib
install -m 644 ftplib.h /usr/local/include
(cd /usr/local/lib && \
ln -sf libftp.so.$(SOVERSION) libftp.so.$(SONAME) && \
ln -sf libftp.so.$(SONAME) libftp.so)
depend :
$(CC) $(CFLAGS) -M $(SOURCES) > .depend
ftplib.o: ftplib.cpp ftplib.h
$(CC) -c $(CFLAGS) -fPIC -D_REENTRANT -DNOSSL $< -o $@
libftp++.a: ftplib.o
ar -rcs $@ $<
libftp.so.$(SOVERSION): ftplib.o
$(CC) -shared -Wl,-$(SOFLAG),libftp.so.$(SONAME) $(LIBS) -lc -o $@ $<
libftp++.so: libftp.so.$(SOVERSION)
ln -sf $< libftp.so.$(SONAME)
ln -sf $< $@
ifeq (.depend,$(wildcard .depend))
include .depend
endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。