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

📄 makefile.in

📁 Click is a modular router toolkit. To use it you ll need to know how to compile and install the sof
💻 IN
字号:
# Warning: this file must be usable by regular make# (unlike the Makefiles in subdirectories).SHELL = @SHELL@@SUBMAKE@PACKAGE = clickVERSION = @CLICK_VERSION@top_srcdir = @top_srcdir@srcdir = @srcdir@top_builddir = ../..subdir = etc/libclickconf_auxdir = @conf_auxdir@AUTOCONF = @AUTOCONF@ACLOCAL = aclocal -I m4PERL = @PERL@INSTALL = @INSTALL@INSTALL_IF_CHANGED = @INSTALL_IF_CHANGED@INSTALL_DATA = @INSTALL@ -m 644INSTALL_DATA_IF_CHANGED = @INSTALL_IF_CHANGED@ -m 644mkinstalldirs = $(conf_auxdir)/mkinstalldirsprefix = @prefix@exec_prefix = @exec_prefix@bindir = @bindir@all:	@echo This Makefile does not build anything.	@echo Its only important target is '`make dist'"'".Makefile: $(top_builddir)/config.status $(srcdir)/Makefile.in	cd $(top_builddir) && \	  CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.statusdistdir = libclick-$(VERSION)top_distdir = $(distdir)clean:	-rm -rf $(distdir) $(distdir).tar.gzdistclean: clean	-rm -f Makefiledist: $(distdir).tar.gz	-rm -rf $(distdir)$(distdir).tar.gz: distdir	tar czf $(distdir).tar.gz $(distdir)distdir: always	@if test `grep 'CLICK_VERSION=' $(top_srcdir)/configure.in` != `grep 'CLICK_VERSION=' $(srcdir)/lc-configure.in`; then \	  echo 'ERROR: Bad libclick CLICK_VERSION!'; exit 1; \	fi	-rm -rf $(distdir)	mkdir $(distdir)	@-chmod 777 $(distdir)	@echo Copying library, documentation, configuration, and driver files...	@echo DISTFILES >>$(distdir)/DISTFILES	@for file in `cat $(srcdir)/DISTFILES`; do \	  d=$(top_srcdir); \	  sf=`echo "$$file:$$file:" | sed 's/^\([^:]*\):.*/\1/'`; \	  df=`echo "$$file:$$file:" | sed 's/^[^:]*:\([^:]*\):.*/\1/'`; \	  if test -d "$$d/$$sf"; then \	    mkdir $(distdir)/$$df; \	    chmod 777 $(distdir)/$$df; \	  else \	    test -f "$(distdir)/$$df" \	    || ln $$d/$$sf $(distdir)/$$df 2>/dev/null \	    || cp -p $$d/$$sf $(distdir)/$$df \	    || echo "Could not copy $$d/$$sf!" 1>&2; \	  fi; \	  echo $$df >>$(distdir)/DISTFILES; \	done	cd $(distdir) && $(PERL) -pi -e 's/enable_linuxmodule=yes/enable_linuxmodule=no/;' configure.in	cd $(distdir) && $(ACLOCAL) && $(AUTOCONF)	cd $(distdir) && rm -rf autom4te*	echo configure >>$(distdir)/DISTFILESalways:	@:.PHONY: all dist distdir always

⌨️ 快捷键说明

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