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

📄 makefile.in.in

📁 站点映像程序
💻 IN
字号:
# Makefile for program source directory in GNU NLS utilities package.# Copyright (C) 1995 Free Software Foundation, Inc.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program 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 General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.PACKAGE = @PACKAGE@VERSION = @VERSION@SHELL = /bin/sh@SET_MAKE@srcdir = @srcdir@top_srcdir = @top_srcdir@VPATH = @srcdir@prefix = @prefix@exec_prefix = @exec_prefix@datadir = $(prefix)/@DATADIRNAME@localedir = $(datadir)/localegnulocaledir = $(prefix)/share/localegettextsrcdir = $(prefix)/share/gettextsubdir = poINSTALL = @INSTALL@INSTALL_DATA = @INSTALL_DATA@CC = @CC@GENCAT = @GENCAT@GMSGFMT = @GMSGFMT@MSGFMT = @MSGFMT@XGETTEXT = @XGETTEXT@TUPDATE = tupdateDEFS = @DEFS@CFLAGS = @CFLAGS@CPPFLAGS = @CPPFLAGS@INCLUDES = -I.. -I$(top_srcdir)/intlCOMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS)SOURCES = cat-id-tbl.cPOFILES = @POFILES@GMOFILES = @GMOFILES@DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(PACKAGE).pot \stamp-cat-id $(POFILES) $(GMOFILES) $(SOURCES)POTFILES = \CATALOGS = @CATALOGS@CATOBJEXT = @CATOBJEXT@INSTOBJEXT = @INSTOBJEXT@.SUFFIXES:.SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat.c.o:	$(COMPILE) $<.po.pox:	$(MAKE) $(PACKAGE).pot	$(TUPDATE) $(srcdir)/$(PACKAGE).pot $< > $*.pox.po.mo:	$(MSGFMT) -o $@ $<.po.gmo:	file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \	  && rm -f $$file && $(GMSGFMT) -o $$file $<.po.cat:	sed -f ../intl/po2msg.sed < $< > $*.msg \	  && rm -f $@ && $(GENCAT) $@ $*.msgall: cat-id-tbl.c $(CATALOGS)$(PACKAGE).pot: $(POTFILES)	$(XGETTEXT) --default-domain=$(PACKAGE) --directory=$(top_srcdir) \	  --add-comments --keyword=_ --keyword=N_ \	  --files-from=$(srcdir)/POTFILES.in	if cmp -s $(PACKAGE).po $(srcdir)/$(PACKAGE).pot; then \	  rm -f $(PACKAGE).po; \	else \	  rm -f $(srcdir)/$(PACKAGE).pot \	    && mv $(PACKAGE).po $(srcdir)/$(PACKAGE).pot; \	ficat-id-tbl.c: stamp-cat-idstamp-cat-id: $(PACKAGE).pot	rm -f cat-id-tbl.tmp.c	sed -f ../intl/po2tbl.sed $(srcdir)/$(PACKAGE).pot \		| sed -e "s/@PACKAGE NAME@/$(PACKAGE)/" > cat-id-tbl.tmp.c	if cmp -s cat-id-tbl.tmp.c $(srcdir)/cat-id-tbl.c; then \	  rm cat-id-tbl.tmp.c; \	else \	  echo cat-id-tbl.c changed; \	  rm -f $(srcdir)/cat-id-tbl.c; \	  mv cat-id-tbl.tmp.c $(srcdir)/cat-id-tbl.c; \	fi	cd $(srcdir) && rm -f stamp-cat-id && echo timestamp > stamp-cat-idinstall: install-exec install-datainstall-exec:install-data: all	$(top_srcdir)/mkinstalldirs $(datadir)	catalogs='$(CATALOGS)'; \	for cat in $$catalogs; do \	  if test "`echo $$cat | sed 's/.*\(\..*\)/\1/'`" = ".gmo"; then \	    destdir=$(gnulocaledir); \	  else \	    destdir=$(localedir); \	  fi; \	  lang=`echo $$cat | sed 's/$(CATOBJEXT)$$//'`; \	  dir=$$destdir/$$lang/LC_MESSAGES; \	  $(top_srcdir)/mkinstalldirs $$dir; \	  if test -r $$cat; then \	    $(INSTALL_DATA) $$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \	  else \	    $(INSTALL_DATA) $(srcdir)/$$cat $$dir/$(PACKAGE)$(INSTOBJEXT); \	  fi; \	done# This installation goal is only used in GNU gettext.  Packages which# only use the library should use install instead.install-src: install	$(top_srcdir)/mkinstalldirs $(gettextsrcdir)	cd $(srcdir) && \	  $(INSTALL_DATA) Makefile.in.in $(gettextsrcdir)/po-Makefile.in.inuninstall:	catalogs='$(CATALOGS)'; \	for cat in $$catalogs; do \	  lang=`echo $$cat | sed 's/$(CATOBJEXT)$$//'`; \	  rm -f $(localedir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \	  rm -f $(gnulocaledir)/$$lang/LC_MESSAGES/$(PACKAGE)$(INSTOBJEXT); \	done	rm -f $(gettextsrcdir)/po-Makefile.in.incheck: allcat-id-tbl.o: ../intl/libgettext.hTAGS ID:mostlyclean:	rm -f core core.* *.pox $(PACKAGE).po *.old.po cat-id-tbl.tmp.c	rm -f *.oclean: mostlycleandistclean: clean	rm -f Makefile Makefile.in POTFILES *.mo *.msg *.catmaintainer-clean: distclean	@echo "This command is intended for maintainers to use;"	@echo "it deletes files that may require special tools to rebuild."distdir = ../$(PACKAGE)-$(VERSION)/$(subdir)dist dist-gettext: update-po $(DISTFILES)	for file in $(DISTFILES); do \	  ln $(srcdir)/$$file $(distdir) 2> /dev/null \	    || cp -p $(srcdir)/$$file $(distdir); \	doneupdate-po: Makefile	$(MAKE) $(PACKAGE).pot	cd $(srcdir); \	catalogs='$(CATALOGS)'; \	for cat in $$catalogs; do \	  lang=`echo $$cat | sed 's/$(CATOBJEXT)$$//'`; \	  mv $$lang.po $$lang.old.po; \	  if $(TUPDATE) $(PACKAGE).pot $$lang.old.po > $$lang.po; then \	    rm -f $$lang.old.po; \	  else \	    echo "tupdate for $$cat failed!"; \	    rm -f $$lang.po; \	    mv $$lang.old.po $$lang.po; \	  fi; \	donePOTFILES: POTFILES.in	( if test 'x$(srcdir)' != 'x.'; then \	    posrcprefix='$(top_srcdir)/'; \	  else \	    posrcprefix="../"; \	  fi; \	  sed -e '/^#/d' -e '/^[ 	]*$$/d' \	      -e "s@.*@	$$posrcprefix& \\\\@" \	      -e '$$s/\(.*\) \\/\1/' < $(srcdir)/POTFILES.in > POTFILES )Makefile: Makefile.in.in ../config.status POTFILES	cd .. && CONFIG_FILES=$(subdir)/$@.in 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 + -