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

📄 makefile

📁 elinks下lynx是最重要的二个文本浏览器, 在linux下非常实用, elinks也是gentoo安装过程中默认使用的浏览器, 这是elinks源代码
💻
字号:
top_builddir=../../..include $(top_builddir)/Makefile.configlocaledir = $(datadir)/localebuilddir = $(top_builddir)/src/intl/gettextOBJS = \ bindtextdom.o \ dcgettext.o \ dcigettext.o \ dcngettext.o \ dgettext.o \ dngettext.o \ explodename.o \ finddomain.o \ gettext.o \ intl-compat.o \ l10nflist.o \ libintl.o \ loadmsgcat.o \ localcharset.o \ localealias.o \ ngettext.o \ plural.o \ textdomain.o# $(builddir)/charset.alias: $(srcdir)config.charset$(builddir)/charset.alias: $(srcdir)config.charset	$(SHELL) $(srcdir)config.charset '$(host)' > $@.new	mv $@.new $@# FIXME: Building plural.c from plural.y on the fly doesn't workYACC = $(INTLBISON) -y -dYFLAGS = --name-prefix=gettext__plural.c: plural.y.SUFFIXES: .y .c.y.c:	$(YACC) $(YFLAGS) --output $@ $<	rm -f $*.hinstall-local: $(builddir)/charset.alias all	@if test '$(CONFIG_NLS)' = yes; then \	  temp=$(DESTDIR)$(libdir)/t-charset.alias; \	  dest=$(DESTDIR)$(libdir)/charset.alias; \	  if test -f $(DESTDIR)$(libdir)/charset.alias; then \	    orig=$(DESTDIR)$(libdir)/charset.alias; \	    sed -f ref-add.sed $$orig > $$temp; \	    $(INSTALL_DATA) $$temp $$dest; \	    rm -f $$temp; \	  else \	    if test $(GLIBC21) = no; then \	      $(MKINSTALLDIRS) $(DESTDIR)$(libdir); \	      orig=charset.alias; \	      sed -f ref-add.sed $$orig > $$temp; \	      $(INSTALL_DATA) $$temp $$dest; \	      rm -f $$temp; \	    fi; \	  fi; \	  $(MKINSTALLDIRS) $(DESTDIR)$(localedir); \	  test -f $(DESTDIR)$(localedir)/locale.alias \	    && orig=$(DESTDIR)$(localedir)/locale.alias \	    || orig=$(srcdir)locale.alias; \	  temp=$(DESTDIR)$(localedir)/t-locale.alias; \	  dest=$(DESTDIR)$(localedir)/locale.alias; \	  sed -f ref-add.sed $$orig > $$temp; \	  $(INSTALL_DATA) $$temp $$dest; \	  rm -f $$temp; \	else \	  : ; \	fiuninstall-local:	@if test '$(CONFIG_NLS)' = yes; then \	  if test -f $(DESTDIR)$(libdir)/charset.alias; then \	    temp=$(DESTDIR)$(libdir)/t-charset.alias; \	    dest=$(DESTDIR)$(libdir)/charset.alias; \	    sed -f ref-del.sed $$dest > $$temp; \	    if grep '^# Packages using this file: $$' $$temp > /dev/null; then \	      rm -f $$dest; \	    else \	      $(INSTALL_DATA) $$temp $$dest; \	    fi; \	    rm -f $$temp; \	  fi; \	  if test -f $(DESTDIR)$(localedir)/locale.alias; then \	    temp=$(DESTDIR)$(localedir)/t-locale.alias; \	    dest=$(DESTDIR)$(localedir)/locale.alias; \	    sed -f ref-del.sed $$dest > $$temp; \	    if grep '^# Packages using this file: $$' $$temp > /dev/null; then \	      rm -f $$dest; \	    else \	      $(INSTALL_DATA) $$temp $$dest; \	    fi; \	    rm -f $$temp; \	  fi; \	else \	  : ; \	fiinclude $(top_srcdir)/Makefile.lib

⌨️ 快捷键说明

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