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

📄 makefile.in

📁 早期freebsd实现
💻 IN
字号:
# Copyright (C) 1989, 1992 Free Software Foundation, Inc.# written by Douglas C. Schmidt (schmidt@ics.uci.edu)# # This file is part of GNU GPERF.# # GNU GPERF 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 1, or (at your option)# any later version.# # GNU GPERF 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 GNU GPERF; see the file COPYING.  If not, write to# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 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)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`CC = `if [ -f ../../../gcc/gcc ] ; \	then echo ../../../gcc/gcc -B../../../gcc/ ; \	else echo cc ; fi`CXX = `if [ -f ../../../gcc/gcc ] ; \	then echo ../../../gcc/gcc -B../../../gcc/ ; \	else echo gcc ; fi`CXXFLAGS = -g -OXTRAFLAGS = `if [ -f ../../../gcc/gcc ] ; \	then echo -I../../../gcc/include ; \	else echo ; fi`LIBS = ../../libg++.aIO_DIR = iostreamOBJECTS  = new.o options.o iterator.o main.o gen-perf.o key-list.o list-node.o\           hash-table.o bool-array.o read-line.o std-err.o version.o DEPEND_SOURCES = ${srcdir}/*.ccWRAP_C_INCLUDES = -I$(srcdir)/../../g++-includePROGRAM = gperfCFLAGS = -g#### host and target dependent Makefile fragments come in here.##.SUFFIXES: .cc .o.cc.o:	$(CXX) $(CXXFLAGS) $(NOSTDINC) $(HDEFINES) -DLO_CAL \	-I../.. -I$(srcdir) -I$(srcdir)/../../$(IO_DIR) -I$(srcdir)/../../src \	$(WRAP_C_INCLUDES) $(XTRAFLAGS) -c $<.PHONY: allall: $(PROGRAM).PHONY: infoinfo:.PHONY: clean-infoclean-info:.PHONY: install-infoinstall-info:.PHONY: checkcheck:gperf: $(OBJECTS) 	$(CXX) -o $@ $(OBJECTS) $(LIBS).PHONY: installinstall: $(PROGRAM)	-parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \	if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi	-if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi	$(INSTALL) $(PROGRAM) $(bindir)/$(PROGRAM).PHONY: mostlyclean clean distclean realcleanmostlyclean:	rm -f *.o coreclean: mostlycleandistclean: clean	rm -f $(PROGRAM) *~ Makefile config.statusrealclean: distclean	rm -f depend.PHONY: forceforce:# 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 + -