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

📄 makefile.icc

📁 各种工程计算的库函数
💻 ICC
字号:
## Makefile for DynThreads# Copyright (C) 2002-2003 Jussi Laako## 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 of the License, 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA#CXX = icpcCXXFLAGS = -O3 #-gDEFS = -D_REENTRANT -D_THREAD_SAFEDEFS += -DUSE_NPTLINCS = -I/usr/local/includeLIBS = -lpthreadPREFIX = /usr/localSRCS = DynThreads.ccOBJS = DynThreads.odefault: allall: libDynThreads.a test.cc.o: $(SRCS)	$(CXX) $(CXXFLAGS) $(DEFS) $(INCS) -c $<libDynThreads.a: $(OBJS)	ar rc libDynThreads.a $(OBJS)	ranlib libDynThreads.atest: libDynThreads.a Test.cc	$(CXX) $(CXXFLAGS) $(DEFS) -I. $(INCS) -o test Test.cc -L. -lDynThreads $(LIBS)install: libDynThreads.a	install -m 755 -d $(PREFIX)/include	install -m 755 -d $(PREFIX)/lib	install -m 644 DynThreads.hh $(PREFIX)/include	install -m 644 libDynThreads.a $(PREFIX)/libclean:	rm -f core *.o *~cleanall:	rm -f libDynThreads.a test DynThreads.dep core *.o *~DynThreads.dep: $(SRCS)	$(CXX) -MM $(DEFS) $(INCS) $(SRCS) >DynThreads.depinclude DynThreads.dep

⌨️ 快捷键说明

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