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

📄 makefile.in

📁 distcc编译器的源代码.好像是readhat公司开发的.
💻 IN
📖 第 1 页 / 共 2 页
字号:
# Top-level Makefile(.in) for distcc# Copyright (C) 2002, 2003, 2004 by Martin Pool# Note that distcc no longer uses automake, but this file is still# structured in a somewhat similar way.# Remember that a CVS checkout of this project contains some# directories that will not be present in a tarball distribution,# including web/.  So, those directories must not be built by regular# commands (make all, make clean, make distclean), only by# maintainer-* or explicit invocations.## VARIABLESPACKAGE = @PACKAGE_NAME@VERSION = @PACKAGE_VERSION@PACKAGE_TARNAME = @PACKAGE_TARNAME@SHELL = @SHELL@# These autoconf variables may contain recursive Make expansions, and# so they have to be done here rather than written into config.h.CFLAGS = @CFLAGS@LDFLAGS = @LDFLAGS@CC = @CC@CPP = @CPP@CPPFLAGS = @CPPFLAGS@ ${DIR_DEFS} -Isrc -I$(srcdir)/lzosrcdir = @srcdir@top_srcdir = @top_srcdir@VPATH = @srcdir@prefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@sbindir = @sbindir@libexecdir = @libexecdir@datadir = @datadir@sysconfdir = @sysconfdir@sharedstatedir = @sharedstatedir@localstatedir = @localstatedir@libdir = @libdir@mandir = @mandir@includedir = @includedir@oldincludedir = /usr/includedocdir = @docdir@pkgdatadir = $(datadir)/@PACKAGE_NAME@# These must be done from here, not from autoconf, because they can # contain variable expansions written in Make syntax.  Ew.DIR_DEFS = -DSYSCONFDIR="\"${sysconfdir}\"" -DPKGDATADIR="\"${pkgdatadir}\""# arguments to pkgconfigGNOME_PACKAGES = @GNOME_PACKAGES@GNOME_CFLAGS = @GNOME_CFLAGS@GNOME_LIBS = @GNOME_LIBS@LIBS = @LIBS@DESTDIR =INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@INSTALL_SCRIPT = @INSTALL_SCRIPT@# You might need to override this depending on the name under which# Python is installed here.PYTHON = @PYTHON@dist_files =							\	src/config.h.in						\	$(dist_lzo)						\	$(dist_contrib)						\	$(dist_patches)						\	$(dist_common)						\	$(MEN)							\	$(pkgdoc_DOCS)						\	$(example_DOCS)						\	$(popt_EXTRA) $(popt_SRC) $(popt_HEADERS)		\	$(SRC) $(HEADERS)					\	$(test_SOURCE)						\	$(bench_PY)						\	$(dist_extra)						\	$(gnome_data)dist_lzo = lzo/minilzo.c lzo/minilzo.h lzo/lzoconf.h lzo/.stamp-conf.indist_contrib = contrib/distcc-absolutify	\	contrib/distcc.sh			\	contrib/distccd-init			\	contrib/dmake				\	contrib/make-j				\	contrib/netpwd				\	contrib/stage-cc-wrapper.patch		\	contrib/redhat/init			\	contrib/redhat/logrotate		\	contrib/redhat/sysconfig		\	contrib/redhat/xinetdbench_PY = bench/Build.py bench/Project.py bench/ProjectDefs.py \	bench/Summary.py bench/actions.py bench/benchmark.py	\	bench/buildutil.py bench/compiler.py bench/statistics.pypkgdoc_DOCS = AUTHORS COPYING NEWS README			\	INSTALL						        \	TODO							\	doc/protocol-1.txt doc/status-1.txt			\	doc/protocol-2.txt					\	doc/reporting-bugs.txt					\	survey.txtexample_DOCS = \	doc/example/init doc/example/init-suse			\	doc/example/logrotate					\	doc/example/xinetd					\# These are included in the distribution but not installed into the# doc dir.dist_extra =							\	README.packaging ChangeLog ChangeLog.oldlatte_HTML = web/binaries.html					\	web/compared.html web/doc.html web/download.html	\	web/cvs.html web/faq.html web/index.html		\	web/links.html web/news.html				\	web/problems.html					\	web/results.html					\	web/scenarios.html web/security.html			\	web/old-news.htmlmkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirsman1dir = $(mandir)/man1man8dir = $(mandir)/man8test_SOURCE = test/comfychair.py				\	test/testdistcc.py			dist_common = Makefile.in install-sh configure configure.ac \	config.guess config.sub mkinstalldirs autogen.sh# It seems a bit unnecessary to ship patches in the released tarballs.# People who are so keen as to apply unsupported patches ought to use# CVS, or at least get them from the list.dist_patches = TAR = tarGZIP = gzipGZIP_OPT = -9vBZIP2 = bzip2distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)distdir = $(PACKAGE_TARNAME)-$(VERSION)tarball = $(PACKAGE_TARNAME)-$(VERSION).tartarball_bz2 = $(tarball).bz2tarball_sig = $(tarball_bz2).ascdistnews = $(PACKAGE_TARNAME)-$(VERSION).NEWScommon_obj = src/arg.o src/argutil.o					\	src/cleanup.o src/compress.o					\	src/trace.o src/util.o src/io.o src/exec.o			\	src/rpc.o src/tempfile.o src/bulk.o src/help.o src/filename.o	\	src/lock.o							\	src/netutil.o							\	src/pump.o							\	src/sendfile.o							\	src/safeguard.o src/snprintf.o src/timeval.o			\	lzo/minilzo.odistcc_obj = src/backoff.o						\	src/climasq.o src/clinet.o src/clirpc.o				\	src/compile.o src/cpp.o						\	src/distcc.o							\	src/hosts.o src/hostfile.o					\	src/implicit.o src/loadfile.o					\	src/remote.o							\	src/ssh.o src/state.o src/strip.o				\	src/timefile.o src/traceenv.o					\	src/where.o							\	$(common_obj)distccd_obj = src/access.o						\	src/daemon.o  src/dopt.o src/dparent.o src/dsignal.o		\	src/ncpus.o							\	src/prefork.o							\	src/serve.o src/setuid.o src/srvnet.o src/srvrpc.o src/state.o	\	$(common_obj) @BUILD_POPT@# Objects that need to be linked in to build monitorsmon_obj =								\	src/cleanup.o							\	src/filename.o							\	src/io.o							\	src/mon.o							\	src/netutil.o							\	src/rpc.o							\	src/snprintf.o src/state.o 					\	src/tempfile.o src/trace.o src/traceenv.o			\	src/util.ognome_obj = src/history.o src/mon-gnome.o				\	src/renderer.oh_exten_obj = src/h_exten.o $(common_obj)h_issource_obj = src/h_issource.o $(common_obj) h_scanargs_obj = src/h_scanargs.o $(common_obj) src/implicit.oh_hosts_obj = src/h_hosts.o $(common_obj) src/hostfile.o src/hosts.o	\	src/loadfile.oh_argvtostr_obj = src/h_argvtostr.o $(common_obj)h_strip_obj = src/h_strip.o $(common_obj) src/strip.oh_parsemask_obj = src/h_parsemask.o $(common_obj) src/access.oh_sa2str_obj = src/h_sa2str.o $(common_obj) src/srvnet.o src/access.oh_ccvers_obj = src/h_ccvers.o $(common_obj) # All source files, for the purposes of building the distributionSRC =	src/access.c src/arg.c src/argutil.c				\	src/backoff.c src/bulk.c					\	src/cleanup.c							\	src/climasq.c src/clinet.c src/clirpc.c src/compile.c		\	src/compress.c src/cpp.c					\	src/daemon.c src/distcc.c src/dsignal.c				\	src/dopt.c src/dparent.c src/exec.c src/filename.c		\	src/h_argvtostr.c						\	src/h_exten.c src/h_hosts.c src/h_issource.c src/h_parsemask.c	\	src/h_sa2str.c src/h_scanargs.c src/h_strip.c			\	src/help.c src/history.c src/hosts.c src/hostfile.c		\	src/implicit.c src/io.c						\	src/loadfile.c src/lock.c 					\	src/mon.c src/mon-notify.c src/mon-text.c			\	src/mon-gnome.c							\	src/ncpus.c src/netutil.c					\	src/prefork.c src/pump.c					\	src/remote.c src/renderer.c src/rpc.c				\	src/safeguard.c src/sendfile.c src/setuid.c src/serve.c		\	src/snprintf.c src/state.c					\	src/srvnet.c src/srvrpc.c src/ssh.c src/strip.c			\	src/tempfile.c src/timefile.c                     		\	src/timeval.c src/traceenv.c					\	src/trace.c src/util.c src/where.c				HEADERS = src/access.h							\	src/bulk.h							\	src/clinet.h src/compile.h					\	src/daemon.h							\	src/distcc.h src/dopt.h src/exitcode.h				\	src/hosts.h src/implicit.h					\	src/mon.h							\	src/netutil.h							\	src/renderer.h src/rpc.h					\	src/snprintf.h src/state.h		 			\	src/timefile.h src/timeval.h src/trace.h			\	src/types.h							\	src/util.h							\	src/exec.h src/lock.h src/where.h src/srvnet.hman1_MEN = man/distcc.1 man/distccd.1 man/distccmon-text.1 man_HTML = man/distcc_1.html man/distccd_1.html man/distccmon_text_1.htmlMEN = $(man1_MEN) gnome_data = gnome/distccmon-gnome-icon.png	\	gnome/distccmon-gnome.desktoppopt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \	popt/popthelp.o popt/poptparse.opopt_SRC=popt/findme.c  popt/popt.c  popt/poptconfig.c			 \	popt/popthelp.c popt/poptparse.cpopt_HEADERS = popt/findme.h popt/popt.h popt/poptint.h popt/system.hpopt_EXTRA = popt/README.popt popt/.stamp-conf.in# You might think that distccd ought to be in sbin, because it's a# daemon.  It is a grey area.  However, the Linux Filesystem Hierarchy# Standard (FHS 2.2) says that sbin is for programs "used exclusively# by the system administrator".  # distccd will often be used by non-root users, and when we support# ssh it will be somewhat important that it be found in their default# path.  Therefore on balance it seems better to put it in bin/.  # Package maintainers can override this if absolutely necessary, but I# would prefer that they do not. -- mbpbin_PROGRAMS = \	distcc@EXEEXT@ \	distccd@EXEEXT@ \	distccmon-text@EXEEXT@ \	@GNOME_BIN@ check_PROGRAMS = \	h_argvtostr@EXEEXT@ \	h_exten@EXEEXT@ \	h_hosts@EXEEXT@ \	h_issource@EXEEXT@ \	h_parsemask@EXEEXT@ \	h_sa2str@EXEEXT@ \	h_scanargs@EXEEXT@ \	h_strip@EXEEXT@## OVERALL targets## IMPLICIT BUILD rules.SUFFIXES: .html .latte .o .c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -