📄 makefile.in
字号:
# Makefile for libg++.a# Copyright (C) 1988, 1992 Free Software Foundation# written by Doug Lea (dl@rocky.oswego.edu)# This file is part of GNU CC.# GNU CC is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY. No author or distributor# accepts responsibility to anyone for the consequences of using it# or for whether it serves any particular purpose or works at all,# unless he says so in writing. Refer to the GNU CC General Public# License for full details.# Everyone is granted permission to copy, modify and redistribute# GNU CC, but only under the conditions described in the# GNU CC General Public License. A copy of this license is# supposed to have been given to you along with GNU CC so you# can know your rights and responsibilities. It should be in a# file named COPYING. Among other things, the copyright notice# and this notice must be preserved on all copies.srcdir = .prefix = /usr/localexec_prefix = $(prefix)bindir = $(exec_prefix)/binlibdir = $(exec_prefix)/libdatadir = $(prefix)/libmandir = $(prefix)/manman1dir = $(mandir)/man1man2dir = $(mandir)/man2man3dir = $(mandir)/man3man4dir = $(mandir)/man4man5dir = $(mandir)/man5man6dir = $(mandir)/man6man7dir = $(mandir)/man7man8dir = $(mandir)/man8man9dir = $(mandir)/man9infodir = $(prefix)/infoincludedir = $(prefix)/includedocdir = $(datadir)/docSHELL = /bin/shINSTALL = install -cINSTALL_PROGRAM = $(INSTALL)INSTALL_DATA = $(INSTALL)FLAGS_TO_PASS= \ "prefix=$(prefix)" \ "exec_prefix=$(exec_prefix)" \ "tooldir=$(tooldir)" \ "AR=$(AR)" \ "AR_FLAGS=$(AR_FLAGS)" \ "CC=$(CC)" \ "CXX=$(CXX)" \ "CFLAGS=$(CFLAGS)" \ "CXXFLAGS=$(CXXFLAGS)" \ "RANLIB=$(RANLIB)" \ "LOADLIBES=$(LOADLIBES)" \ "LDFLAGS=$(LDFLAGS)" \ "MAKEINFO=$(MAKEINFO)" \ "XTRAFLAGS=$(XTRAFLAGS)"AR = `if [ -f ../../binutils/ar ] ; \ then echo ../../binutils/ar ; \ else echo ar ; fi`AR_FLAGS = qcRANLIB = `if [ -f ../../binutils/ranlib ] ; \ then echo ../../binutils/ranlib ; \ else echo ranlib ; fi`MAKEINFO = `if [ -f ../../texinfo/C/makeinfo ] ; \ then echo ../../texinfo/C/makeinfo ; \ else echo makeinfo ; fi`IO_DIR = iostreamCC = `if [ -f $${rootprefix}../../gcc/gcc ] ; \ then echo $${rootprefix}../../gcc/gcc -B$${rootprefix}../../gcc/ ; \ else echo cc ; fi`CXX = `if [ -f $${rootprefix}../../gcc/gcc ] ; \ then echo $${rootprefix}../../gcc/gcc -B$${rootprefix}../../gcc/ ; \ else echo gcc ; fi`CFLAGS = -gCXXFLAGS = -g -OXTRAFLAGS = `if [ -f $${rootprefix}../../gcc/gcc ] ; \ then echo -I$${rootprefix}../../gcc/include ; \ else echo ; fi`SUBDIRS= graph ADT-examples benchmarks PlotFile3D lf trie-gen fib#### host and target dependent Makefile fragments come in here.##.PHONY: allall:.PHONY: installinstall:info:install-info:clean-info:check: force @rootprefix=`pwd`/; export rootprefix; \ for i in $(SUBDIRS); do \ echo "cd $$i; make check ..." ; \ (cd $$i ; $(MAKE) check $(FLAGS_TO_PASS)) || exit 1 ; \ done.PHONY: mostlyclean clean distclean realclean.PHONY: do_mostlyclean do_clean do_distclean do_realcleando_mostlyclean: rm -f *.o core \#*do_clean: do_mostlycleando_distclean: do_clean rm -f *~ *.a config.status Makefiledo_realclean: do_distclean rm -f dependmostlyclean: do_mostlyclean @for D in $(SUBDIRS); do \ echo "cd $$D; make mostlyclean ..." ; \ (cd $$D ; $(MAKE) mostlyclean );\ done clean: do_clean @for D in $(SUBDIRS); do \ echo "cd $$D; make clean ..." ; \ (cd $$D ; $(MAKE) clean TRASH_FILES="$(TRASH_FILES)"); \ done distclean: @for D in $(SUBDIRS); do \ echo "cd $$D; make distclean ..." ; \ (cd $$D ; $(MAKE) distclean TRASH_FILES="$(TRASH_FILES)");\ done @$(MAKE) do_distcleanrealclean: @for D in $(SUBDIRS); do \ echo "cd $$D; make realclean ..." ; \ (cd $$D ; $(MAKE) realclean TRASH_FILES="$(TRASH_FILES)"); \ done @$(MAKE) do_realcleanforce:.PHONY: force check# with the gnu make, this is done automatically.Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -