X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libcpp%2FMakefile.in;h=74877bbd982bd1905d946076585a0577d4dca103;hb=8177d9d5c9b4aa996982e8d2e4e3919b48402415;hp=9c89a25c15291bb750532a00ef1c469ce7fa5086;hpb=21164c01a59d263f2ce4da43d7706faf89f2d8c4;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in index 9c89a25c152..74877bbd982 100644 --- a/libcpp/Makefile.in +++ b/libcpp/Makefile.in @@ -1,7 +1,7 @@ # @configure_input@ # Makefile for libcpp. Run 'configure' to generate Makefile from Makefile.in -# Copyright (C) 2004 Free Software Foundation, Inc. +# Copyright (C) 2004, 2008 Free Software Foundation, Inc. #This file is part of libcpp. @@ -17,8 +17,8 @@ #You should have received a copy of the GNU General Public License #along with libcpp; see the file COPYING. If not, write to -#the Free Software Foundation, 59 Temple Place - Suite 330, -#Boston MA 02111-1307, USA. +#the Free Software Foundation, 51 Franklin Street, Fifth Floor, +#Boston MA 02110-1301, USA. @SET_MAKE@ @@ -31,7 +31,7 @@ ARFLAGS = cru ACLOCAL = @ACLOCAL@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ -CATALOGS = @CATALOGS@ +CATALOGS = $(patsubst %,po/%,@CATALOGS@) CC = @CC@ CFLAGS = @CFLAGS@ WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@ @@ -51,7 +51,10 @@ RANLIB = @RANLIB@ SHELL = @SHELL@ USED_CATALOGS = @USED_CATALOGS@ XGETTEXT = @XGETTEXT@ +DEPMODE = @CCDEPMODE@ +DEPDIR = @DEPDIR@ +datarootdir = @datarootdir@ datadir = @datadir@ exec_prefix = @prefix@ libdir = @libdir@ @@ -60,19 +63,21 @@ prefix = @prefix@ MSGMERGE = msgmerge mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs +depcomp = $(SHELL) $(srcdir)/../depcomp + INCLUDES = -I$(srcdir) -I. -I$(srcdir)/../include @INCINTL@ \ -I$(srcdir)/include ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS) -libcpp_a_OBJS = charset.o directives.o errors.o expr.o files.o \ - identifiers.o init.o lex.o line-map.o macro.o mkdeps.o \ - pch.o symtab.o traditional.o +libcpp_a_OBJS = charset.o directives.o directives-only.o errors.o \ + expr.o files.o identifiers.o init.o lex.o line-map.o macro.o \ + mkdeps.o pch.o symtab.o traditional.o makedepend_OBJS = makedepend.o -libcpp_a_SOURCES = charset.c directives.c errors.c expr.c files.c \ - identifiers.c init.c lex.c line-map.c macro.c mkdeps.c \ - pch.c symtab.c traditional.c +libcpp_a_SOURCES = charset.c directives.c directives-only.c errors.c \ + expr.c files.c identifiers.c init.c lex.c line-map.c macro.c \ + mkdeps.c pch.c symtab.c traditional.c all: libcpp.a makedepend$(EXEEXT) $(USED_CATALOGS) @@ -105,6 +110,7 @@ $(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/acx.m4 \ $(srcdir)/../config/gettext-sister.m4 $(srcdir)/../config/iconv.m4 \ $(srcdir)/../config/codeset.m4 $(srcdir)/../config/lib-ld.m4 \ $(srcdir)/../config/lib-link.m4 $(srcdir)/../config/lib-prefix.m4 \ + $(srcdir)/../config/override.m4 $(srcdir)/../config/proginstall.m4 \ $(srcdir)/configure.ac cd $(srcdir) && $(ACLOCAL) -I ../config @@ -115,7 +121,7 @@ stamp-h1: $(srcdir)/config.in config.status -rm -f stamp-h1 $(SHELL) ./config.status config.h -$(srcdir)/config.in: @MAINT@ $(srcdir)/configure +$(srcdir)/config.in: @MAINT@ $(srcdir)/configure.ac cd $(srcdir) && $(AUTOHEADER) -rm -f stamp-h1 @@ -165,7 +171,8 @@ clean: mostlyclean distclean: clean -rm -f config.h stamp-h1 config.status config.cache config.log \ configure.lineno configure.status.lineno Makefile localedir.h \ - localedir.hs + localedir.hs $(DEPDIR)/*.Po + -rmdir $(DEPDIR) maintainer-clean: distclean @echo "This command is intended for maintainers to use" @@ -175,21 +182,41 @@ maintainer-clean: distclean check: installcheck: dvi: +pdf: html: info: install-info: +install-pdf: install-man: +install-html: update-po: $(CATALOGS:.gmo=.pox) .PHONY: installdirs install install-strip mostlyclean clean distclean \ - maintainer-clean check installcheck dvi html info install-info \ - install-man update-po + maintainer-clean check installcheck dvi pdf html info install-info \ + install-man update-po install-html + +# Dependency rule. +COMPILE.base = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c +ifeq ($(DEPMODE),depmode=gcc3) +# Note that we put the dependencies into a .Tpo file, then move them +# into place if the compile succeeds. We need this because gcc does +# not atomically write the dependency output file. +COMPILE = $(COMPILE.base) -o $@ -MT $@ -MMD -MP -MF $(DEPDIR)/$*.Tpo +POSTCOMPILE = @mv $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +else +COMPILE = source='$<' object='$@' libtool=no DEPDIR=$(DEPDIR) $(DEPMODE) \ + $(depcomp) $(COMPILE.base) +# depcomp handles atomicity for us, so we don't need a postcompile +# step. +POSTCOMPILE = +endif # Implicit rules and I18N .c.o: - $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c $< + $(COMPILE) $< + $(POSTCOMPILE) # N.B. We do not attempt to copy these into $(srcdir). .po.gmo: @@ -207,50 +234,33 @@ update-po: $(CATALOGS:.gmo=.pox) else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@ # Rule for regenerating the message template. +$(PACKAGE).pot: po/$(PACKAGE).pot po/$(PACKAGE).pot: $(libcpp_a_SOURCES) -test -d $(srcdir)/po || mkdir $(srcdir)/po $(XGETTEXT) --default-domain=$(PACKAGE) \ - --keyword=cpp_error,3 --keyword=cpp_errno,3 \ - --keyword=cpp_error_with_line,5 \ + --keyword=_ --keyword=N_ \ + --keyword=cpp_error:3 --keyword=cpp_errno:3 \ + --keyword=cpp_error_with_line:5 \ + --keyword=SYNTAX_ERROR --keyword=SYNTAX_ERROR2 \ --copyright-holder="Free Software Foundation, Inc." \ --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \ - --language=c -o po/$(PACKAGE).pot $^ + --language=c -o po/$(PACKAGE).pot.tmp $^ + sed 's:$(srcdir)/::g' po/$(PACKAGE).pot + rm po/$(PACKAGE).pot.tmp + +TAGS_SOURCES = $(libcpp_a_SOURCES) makedepend.c internal.h ucnid.h \ + include/line-map.h include/symtab.h include/cpp-id-data.h \ + include/cpplib.h include/mkdeps.h system.h +TAGS: $(TAGS_SOURCES) + cd $(srcdir) && etags $(TAGS_SOURCES) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: # Dependencies +-include $(patsubst %.o, $(DEPDIR)/%.Po, $(libcpp_a_OBJS) $(makedepend_OBJS)) -top_srcdir = $(srcdir)/.. -top_incdir = $(srcdir)/../include -libcpp_incdir = $(srcdir)/../libcpp/include - -COMMON_DEPS = config.h $(srcdir)/system.h $(srcdir)/internal.h \ - $(top_incdir)/libiberty.h $(top_incdir)/ansidecl.h \ - $(top_incdir)/filenames.h $(top_incdir)/safe-ctype.h \ - $(libcpp_incdir)/symtab.h $(top_incdir)/obstack.h \ - $(libcpp_incdir)/line-map.h $(libcpp_incdir)/cpplib.h \ - $(libcpp_incdir)/cpp-id-data.h $(top_incdir)/getopt.h - -charset.o: $(srcdir)/charset.c $(COMMON_DEPS) $(srcdir)/ucnid.h -directives.o: $(srcdir)/directives.c $(COMMON_DEPS) $(libcpp_incdir)/mkdeps.h -errors.o: $(srcdir)/errors.c $(COMMON_DEPS) -expr.o: $(srcdir)/expr.c $(COMMON_DEPS) - -files.o: $(srcdir)/files.c $(COMMON_DEPS) $(libcpp_incdir)/mkdeps.h \ - $(top_incdir)/hashtab.h $(top_incdir)/md5.h -identifiers.o: $(srcdir)/identifiers.c $(COMMON_DEPS) -init.o: $(srcdir)/init.c $(COMMON_DEPS) $(libcpp_incdir)/mkdeps.h localedir.h -lex.o: $(srcdir)/lex.c $(COMMON_DEPS) -line-map.o: $(srcdir)/line-map.c $(COMMON_DEPS) -macro.o: $(srcdir)/macro.c $(COMMON_DEPS) -makedepend.o: $(srcdir)/makedepend.c $(COMMON_DEPS) -mkdeps.o: $(srcdir)/mkdeps.c $(COMMON_DEPS) - -pch.o: $(srcdir)/pch.c $(COMMON_DEPS) \ - $(top_incdir)/hashtab.h $(libcpp_incdir)/mkdeps.h - -symtab.o: $(srcdir)/symtab.c $(COMMON_DEPS) -traditional.o: $(srcdir)/traditional.c $(COMMON_DEPS) +# Dependencies on generated headers have to be explicit. +init.o: localedir.h