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

📄 makefile.in

📁 早期freebsd实现
💻 IN
字号:
# A makefile for the stuff now in libg++/etcsrcdir = .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 = iostreamPROTODIR = $(srcdir)/../../src/genCC = `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#### host and target dependent Makefile fragments come in here.##.SUFFIXES: .o .cc.cc.o:	$(CXX) $(CXXFLAGS) $(NOSTDINC) -I. -I$(srcdir) -I../.. \	-I$(srcdir)/../../$(IO_DIR) -I$(srcdir)/../../src \	$(WRAP_C_INCLUDES) $(XTRAFLAGS) -c $< .PHONY: allall:.PHONY: checkcheck: graph $(srcdir)/test.dat $(srcdir)/test2.dat	./graph -d -c 3 -g 2 -l "a diagonal line" -X "x axis" -Y "y axis" -m 1\	        <$(srcdir)/test2.dat >test2.pl	./graph -d <$(srcdir)/test.dat >test.pl	@echo use plot to look at the plot files test.pl and test2.plrun_tests: checkOBJECTS = pPlex.o pXPlex.o eGetOpt.o ePlotFile.o read_data.o tick_intrvl.oDEPEND_SOURCES = $(srcdir)/*.cclibgraph.a : $(OBJECTS)	rm -f libgraph.a	$(AR) $(AR_FLAGS) libgraph.a $(OBJECTS)	$(RANLIB) libgraph.agraph : graph.o libgraph.a	$(CXX) graph.o libgraph.a $(LIBS) -lm -o $@graph.o: pXPlex.h pPlex.hpXPlex.h pXPlex.cc:	PROTODIR=$(PROTODIR); export PROTODIR; ../../genclass/genclass point val XPlex ppPlex.h pPlex.cc:	PROTODIR=$(PROTODIR); export PROTODIR; ../../genclass/genclass point val Plex p# GNU tail doesn't handle -r - use the 'tac' program instead.REVERSE_LINES = tail -r#REVERSE_LINES = tac$(srcdir)/test.dat:	-echo 0 0 1 1 2 0 | spline | $(REVERSE_LINES) > $(srcdir)/test.dat$(srcdir)/test2.dat:	echo 0 0 >$(srcdir)/test2.dat	echo 1 1 "label for 1 1" >>$(srcdir)/test2.dat	echo 2 2 >>$(srcdir)/test2.dat	echo 3 3 "label for 3 3" >>$(srcdir)/test2.dat	echo 4 4 >>$(srcdir)/test2.datDIST = Makefile graph.tex ChangeLog \eGetOpt.cc		read_data.cc \eGetOpt.h		read_data.h \ePlotFile.cc		tick_intrvl.cc \ePlotFile.h		tick_intrvl.h \graph.cc		pdefs.hgraph.tar.Z : $(DIST) CHECKSUMS	tar cfz $@ $^ CHECKSUMSCHECKSUMS : $(DIST)	sum $(DIST) >CHECKSUMSdist : graph-dist.tar.Zgraph-dist.tar.Z : $(DIST)	-rm -rf graph-dist	mkdir graph-dist	ln $(DIST) graph-dist	tar cfz graph-dist.tar.Z $(DIST)	rm -rf graph-distgraph.shar : pdefs.h graph.cc Makefile graph.texinfo	shar  pdefs.h graph.cc Makefile graph.texinfo > $@.PHONY: mostlyclean clean distclean realcleanmostlyclean:	rm -f *.o \#* core  pXPlex* pPlex* test.pl test2.plclean: mostlyclean	rm -f graph graph.shar libgraph.a distclean: clean	rm -f *~ config.status Makefilerealclean: distclean	rm -f depend.PHONY: check graph_all all graph run_tests distforce:# 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 + -