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

📄 makefile.common

📁 PTypes是一个扩充了多线程和网络功能的STL库
💻 COMMON
字号:
###  C++ Portable Types Library (PTypes)#  Version 2.0.2  Released 17-May-2004##  Copyright (C) 2001-2004 Hovik Melikyan##  http://www.melikyan.com/ptypes/#### Makefile for all platforms, called automatically from# Makefile.<platform>#.SUFFIXES:	.cxx .oDDEBUG      = -DDEBUGINCDIR      = ../includeCXXOPTS     = $(OS_CXXOPTS) $(DDEBUG) -I$(INCDIR) -Wall -O2LDLIBS      = $(OS_LDLIBS)BINDEST     = ../binOBJS        = wshare.o request.o clients.o sysutils.o urlutils.o log.o \	    mimetable.o config.o utils.o modules.o \	    mod_file.o mod_wstat.o mod_about.o.cxx.o:	$(CXX) -c $(CXXOPTS) $<all: wshare$(OS_BINEXT)wshare$(OS_BINEXT): $(OBJS) ../lib/libptypes.a	$(CXX) $(CXXOPTS) $(OBJS) ../lib/libptypes.a $(LDLIBS) -o $@	mkdir -p $(BINDEST) ; cp $@ $(BINDEST)/	strip $(BINDEST)/$@wshare.o: wshare.cxx clients.h request.h sysutils.h urlutils.h log.h config.hrequest.o: request.cxx request.h modules.h clients.h sysutils.h urlutils.h log.h config.hclients.o: clients.cxx clients.h log.h config.hsysutils.o: sysutils.cxx sysutils.h utils.hurlutils.o: urlutils.cxx urlutils.hutils.o: utils.cxx utils.h sysutils.h urlutils.h config.hlog.o: log.cxx log.h config.hconfig.o: config.cxx config.h sysutils.hmimetable.o: mimetable.cxx config.hmodules.o: modules.cxx modules.h request.hmod_file.o: mod_file.cxx config.h sysutils.h utils.h request.h clients.hmod_wstat.o: mod_wstat.cxx config.h utils.h request.h clients.hmod_about.o: mod_about.cxx config.h utils.h request.hclean: clean-src	rm -f $(BINDEST)/wshare$(OS_BINEXT)clean-src:	rm -f *.o	rm -f core *.core	rm -f wshare$(OS_BINEXT)

⌨️ 快捷键说明

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