makefile

来自「各种工程计算的库函数」· 代码 · 共 63 行

TXT
63
字号
## 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 = g++CXXFLAGS = -march=pentium2 -mtune=pentium4 -O2 -Wall -Werror #-ggdbDEFS = -D_REENTRANT -D_THREAD_SAFEDEFS += -DUSE_NPTLINCS = $(PKGINC) #-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 + =
减小字号Ctrl + -
显示快捷键?