📄 makefile.in
字号:
# po/Makefile for libelf.# Copyright (C) 1995 - 2001 Michael Riepe <michael@stud.uni-hannover.de># # This library is free software; you can redistribute it and/or# modify it under the terms of the GNU Library General Public# License as published by the Free Software Foundation; either# version 2 of the License, or (at your option) any later version.# # This library is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU# Library General Public License for more details.# # You should have received a copy of the GNU Library General Public# License along with this library; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.# @(#) $Id: Makefile.in,v 1.11 2003/12/05 15:36:00 michael Exp $instroot =prefix = @prefix@exec_prefix = @exec_prefix@localedir = @localedir@CC = @CC@RM = rm -fMV = mv -fINSTALL = @INSTALL@INSTALL_DATA = @INSTALL_DATA@GENCAT = @GENCAT@GMSGFMT = @GMSGFMT@MSGFMT = @MSGFMT@XGETTEXT = @XGETTEXT@TUPDATE = tupdateCFLAGS = @CFLAGS@CPPFLAGS = @CPPFLAGS@DEFS = -DHAVE_CONFIG_HLDFLAGS = @LDFLAGS@LIBS = @LIBS@# no user serviceable parts belowPACKAGE = @PACKAGE@VERSION = @VERSION@SHELL = /bin/sh@SET_MAKE@srcdir = @srcdir@top_srcdir = @top_srcdir@VPATH = @srcdir@topdir = ..subdir = po.SUFFIXES:.SUFFIXES: .po .mo .gmo .msg .cat.po.mo: @$(RM) $@ $(MSGFMT) -o $@ $<.po.gmo: file=$(srcdir)/`echo $*|sed 's,.*/,,'`.gmo; \ $(RM) $$file && $(GMSGFMT) -o $$file $<.msg.cat: @$(RM) $@ $(GENCAT) $@ $<POFILES = @POFILES@GMOFILES = @GMOFILES@MSGFILES = @MSGFILES@DISTFILES = \ gmo2msg.c Makefile.in $(PACKAGE).pot stamp-po \ $(POFILES) $(GMOFILES) $(MSGFILES)POTFILES = $(top_srcdir)/lib/errors.hCATALOGS = @CATALOGS@CATOBJEXT = @CATOBJEXT@INSTOBJEXT = @INSTOBJEXT@all: $(CATALOGS)check:install: all install-datainstall-data: $(top_srcdir)/mkinstalldirs catalogs="$(CATALOGS)"; for cat in $$catalogs; do \ lang=`echo $$cat | sed 's,$(CATOBJEXT)$$,,'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(SHELL) $(top_srcdir)/mkinstalldirs $(instroot)$$dir; \ if test -r $$cat; then \ $(INSTALL_DATA) $$cat $(instroot)$$dir/$(PACKAGE)$(INSTOBJEXT); \ else \ $(INSTALL_DATA) $(srcdir)/$$cat $(instroot)$$dir/$(PACKAGE)$(INSTOBJEXT); \ fi; \ doneuninstall: catalogs="$(CATALOGS)"; for cat in $$catalogs; do \ lang=`echo $$cat | sed 's,$(CATOBJEXT)$$,,'`; \ $(RM) $(instroot)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \ donemostlyclean: $(RM) core core.* $(PACKAGE).po *.po.tmpclean: mostlycleandistclean: clean $(RM) gmo2msg *.mo *.cat $(RM) Makefilemaintainer-clean: distclean $(RM) stamp-po$(PACKAGE).pot: $(POTFILES) $(XGETTEXT) -c -d$(PACKAGE) -k_ $(POTFILES) if cmp -s $(PACKAGE).po $(srcdir)/$(PACKAGE).pot; then \ $(RM) $(PACKAGE).po; \ else \ $(RM) $(srcdir)/$(PACKAGE).pot && \ $(MV) $(PACKAGE).po $(srcdir)/$(PACKAGE).pot; \ fiupdate-po: stamp-postamp-po: $(PACKAGE).pot pofiles="$(POFILES)"; cd $(srcdir) && for po in $$pofiles; do \ $(RM) $$po.tmp; \ if $(TUPDATE) $(PACKAGE).pot $$po > $$po.tmp; then \ $(RM) $$po; \ $(MV) $$po.tmp $$po; \ else \ echo "tupdate for $$po failed!"; \ $(RM) $$po.tmp; \ fi; \ done $(RM) $@ && echo timestamp > $@# Create X/Open message catalog sources from .gmo files..gmo.msg: $(MAKE) $(srcdir)/gmo2msg LANGUAGE=`echo $*|sed 's,.*/,,'`; export LANGUAGE; \ cd $(srcdir) && $(RM) $$LANGUAGE.msg && ./gmo2msg > $$LANGUAGE.msg.SUFFIXES: .c.c: @$(RM) $@ $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) \ $(LDFLAGS) $*.c $(LIBS) -lintl -o $@INCLUDES = -I$(topdir) -I. -I$(topdir)/lib -I$(srcdir) -I$(top_srcdir)/lib# maintainer onlyMAINT = @MAINT@distdir = $(PACKAGE)-$(VERSION)distsubdir = $(topdir)/$(distdir)/$(subdir)$(MAINT)dist: update-po $(DISTFILES) if test -d $(distsubdir); then true; else mkdir $(distsubdir); fi files="$(DISTFILES)"; for file in $$files; do \ ln $(srcdir)/$$file $(distsubdir) >/dev/null 2>&1 || \ cp -p $(srcdir)/$$file $(distsubdir) || exit 1; \ done# For the justification of the following Makefile rules, see node# `Automatic Remaking' in GNU Autoconf documentation.$(MAINT)Makefile: Makefile.in $(topdir)/config.status cd $(topdir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status# Tell versions [3.59,3.63) of GNU make not to export all variables.# Otherwise a system limit (for SysV at least) may be exceeded..NOEXPORT:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -