📄 makefile.am
字号:
## Process this file with automake to produce Makefile.in## $Id: Makefile.am,vinclude $(top_srcdir)/Makefile.baseEXTRA_DIST = TODO VERSION config.charset locale.alias plural.yDISTCLEANFILES = charset.aliaslocaledir = $(datadir)/localebuilddir = $(top_builddir)/src/intl/gettextnoinst_LIBRARIES = libintl.alibintl_a_SOURCES = \ bindtextdom.c \ dcgettext.c \ dcigettext.c \ dcngettext.c \ dgettext.c \ dngettext.c \ explodename.c \ finddomain.c \ gettext.c \ gettext.h \ gettextP.h \ hash-string.h \ intl-compat.c \ l10nflist.c \ libgettext.h \ libgnuintl.h \ libintl.c \ libintl.h \ loadinfo.h \ loadmsgcat.c \ localcharset.c \ localealias.c \ ngettext.c \ plural.c \ textdomain.c$(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.y.c: $(YACC) $(YFLAGS) --output $@ $< rm -f $*.hinstall-data-local: $(builddir)/charset.alias all @if test '@USE_INCLUDED_LIBINTL@' = 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 '@USE_INCLUDED_LIBINTL@' = 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 \ : ; \ fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -