📄 makefile.in
字号:
# Copyright (C) 1989, 1992 Free Software Foundation, Inc.# written by Douglas C. Schmidt (schmidt@ics.uci.edu)# # This file is part of GNU TRIE-GEN.# # GNU TRIE-GEN 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 trie-gen 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 trie-gen; 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`IO_DIR = iostreamCC = `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`CFLAGS = -gCXXFLAGS = -g -OXTRAFLAGS = `if [ -f ../../../gcc/gcc ] ; \ then echo -I../../../gcc/include ; \ else echo ; fi`LIBS = ../../libg++.aWRAP_C_INCLUDES = -I$(srcdir)/../../g++-include.SUFFIXES: .o .cc.cc.o: $(CXX) $(CXXFLAGS) $(NOSTDINC) -I. -I$(srcdir) -I../.. \ -I$(srcdir)/../../$(IO_DIR) -I$(srcdir)/../../src \ $(WRAP_C_INCLUDES) $(XTRAFLAGS) -c $<OBJS = trie.o compact.o main.o version.o options.oDEPEND_SOURCES = $(srcdir)/*.cc#### host and target dependent Makefile fragments come in here.##.PHONY: allall:info:clean-info:install-info:trie-gen: $(OBJS) $(CXX) -o $@ $(OBJS) $(LIBS)out.cc: trie-gen @echo "Generating a compacted minimal-prefix trie for files in /bin" /bin/ls -1 /bin | ./trie-gen -c > out.cccheck: out.o test.o $(CXX) out.o test.o $(LIBS) /bin/ls -1 /bin | ./a.out -vrun_tests: checkdistrib: (cd ..; rm -f trie-gen.tar.Z; tar cvf trie-gen.tar trie-gen; \ compress trie-gen.tar).PHONY: mostlyclean clean distclean realcleanmostlyclean: rm -f *.o \#* core trie-gen out.cc a.outclean: mostlycleandistclean: clean rm -f *~ config.status Makefilerealclean: distclean rm -f dependforce:# with the gnu make, this is done automatically.Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) $(SHELL) ./config.status# DO NOT DELETE THIS LINE -- g++dep uses it.# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.compact.o : $(srcdir)/compact.cc $(srcdir)/compact.h main.o : $(srcdir)/main.cc $(srcdir)/options.h $(srcdir)/trie.h $(srcdir)/compact.h options.o : $(srcdir)/options.cc $(srcdir)/options.h trie.o : $(srcdir)/trie.cc $(srcdir)/trie.h $(srcdir)/compact.h version.o : $(srcdir)/version.cc # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -