📄 makefile
字号:
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 + -