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

📄 makefile.common

📁 PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading
💻 COMMON
字号:
###  C++ Portable Types Library (PTypes)#  Version 1.7.5   Released 9-Mar-2003##  Copyright (c) 2001, 2002, 2003 Hovik Melikyan##  http://www.melikyan.com/ptypes/#  http://ptypes.sourceforge.net/#### Makefile for all platforms, called automatically from# Makefile.<platform>#.SUFFIXES:	.cxx .oCXXDEFS     = -DDEBUGINCDIR      = ../includeCXXFLAGS    = $(CXXOPTS) $(CXXDEFS) -I$(INCDIR) -Wall -O2BINDEST     = ../binOBJS        = wshare.o request.o clients.o sysutils.o urlutils.o log.o \	    mimetable.o config.o utils.o modules.o mod_about.o.cxx.o:	$(CXX) -c $(CXXFLAGS) $<all: wsharewshare: $(OBJS) ../lib/libptypes.a	$(CXX) $(CXXFLAGS) $(OBJS) $(LDLIBS) ../lib/libptypes.a -o $@	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_about.o: mod_about.cxx config.h utils.h request.hclean: clean-src	rm -f $(BINDEST)/wshareclean-src:	rm -f *.o	rm -f core *.core	rm -f wshare

⌨️ 快捷键说明

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