Create new constraint "d" for PowerPC FPRs with 64-bit values.
[official-gcc.git] / libcpp / Makefile.in
blob68f5892d088b86e8d43739d726486385d291734c
1 # @configure_input@
2 # Makefile for libcpp. Run 'configure' to generate Makefile from Makefile.in
4 # Copyright (C) 2004, 2008, 2009 Free Software Foundation, Inc.
6 #This file is part of libcpp.
8 #libcpp is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 3, or (at your option)
11 #any later version.
13 #libcpp is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU General Public License for more details.
18 #You should have received a copy of the GNU General Public License
19 #along with libcpp; see the file COPYING3. If not see
20 #<http://www.gnu.org/licenses/>.
22 @SET_MAKE@
24 srcdir = @srcdir@
25 top_builddir = .
26 VPATH = @srcdir@
27 INSTALL = @INSTALL@
28 AR = ar
29 ARFLAGS = cru
30 ACLOCAL = @ACLOCAL@
31 AUTOCONF = @AUTOCONF@
32 AUTOHEADER = @AUTOHEADER@
33 CATALOGS = $(patsubst %,po/%,@CATALOGS@)
34 CC = @CC@
35 CFLAGS = @CFLAGS@
36 WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
37 CPP = @CPP@
38 CPPFLAGS = @CPPFLAGS@
39 EXEEXT = @EXEEXT@
40 GMSGFMT = @GMSGFMT@
41 INCINTL = @INCINTL@
42 INSTALL_DATA = @INSTALL_DATA@
43 INSTALL_PROGRAM = @INSTALL_PROGRAM@
44 INSTALL_SCRIPT = @INSTALL_SCRIPT@
45 LDFLAGS = @LDFLAGS@
46 LIBICONV = @LIBICONV@
47 LIBINTL = @LIBINTL@
48 PACKAGE = @PACKAGE@
49 RANLIB = @RANLIB@
50 SHELL = @SHELL@
51 USED_CATALOGS = @USED_CATALOGS@
52 XGETTEXT = @XGETTEXT@
53 DEPMODE = @CCDEPMODE@
54 DEPDIR = @DEPDIR@
56 datarootdir = @datarootdir@
57 datadir = @datadir@
58 exec_prefix = @prefix@
59 libdir = @libdir@
60 localedir = $(datadir)/locale
61 prefix = @prefix@
63 MSGMERGE = msgmerge
64 mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs
65 depcomp = $(SHELL) $(srcdir)/../depcomp
67 INCLUDES = -I$(srcdir) -I. -I$(srcdir)/../include @INCINTL@ \
68 -I$(srcdir)/include
70 ALL_CFLAGS = $(CFLAGS) $(WARN_CFLAGS) $(INCLUDES) $(CPPFLAGS)
72 libcpp_a_OBJS = charset.o directives.o directives-only.o errors.o \
73 expr.o files.o identifiers.o init.o lex.o line-map.o macro.o \
74 mkdeps.o pch.o symtab.o traditional.o
76 libcpp_a_SOURCES = charset.c directives.c directives-only.c errors.c \
77 expr.c files.c identifiers.c init.c lex.c line-map.c macro.c \
78 mkdeps.c pch.c symtab.c traditional.c
80 all: libcpp.a $(USED_CATALOGS)
82 .SUFFIXES:
83 .SUFFIXES: .c .gmo .o .obj .po .pox
85 libcpp.a: $(libcpp_a_OBJS)
86 -rm -f libcpp.a
87 $(AR) $(ARFLAGS) libcpp.a $(libcpp_a_OBJS)
88 $(RANLIB) libcpp.a
90 # Rules to rebuild the configuration
92 Makefile: $(srcdir)/Makefile.in config.status
93 $(SHELL) ./config.status Makefile
95 config.status: $(srcdir)/configure
96 $(SHELL) ./config.status --recheck
98 $(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4
99 cd $(srcdir) && $(AUTOCONF)
101 $(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/acx.m4 \
102 $(srcdir)/../config/gettext-sister.m4 $(srcdir)/../config/iconv.m4 \
103 $(srcdir)/../config/codeset.m4 $(srcdir)/../config/lib-ld.m4 \
104 $(srcdir)/../config/lib-link.m4 $(srcdir)/../config/lib-prefix.m4 \
105 $(srcdir)/../config/override.m4 $(srcdir)/../config/proginstall.m4 \
106 $(srcdir)/configure.ac
107 cd $(srcdir) && $(ACLOCAL) -I ../config
109 config.h: stamp-h1
110 test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1)
112 stamp-h1: $(srcdir)/config.in config.status
113 -rm -f stamp-h1
114 $(SHELL) ./config.status config.h
116 $(srcdir)/config.in: @MAINT@ $(srcdir)/configure.ac
117 cd $(srcdir) && $(AUTOHEADER)
118 -rm -f stamp-h1
120 # It is not possible to get LOCALEDIR defined in config.h because
121 # the value it needs to be defined to is only determined in the
122 # Makefile. Hence we do this instead.
123 localedir.h: localedir.hs; @true
124 localedir.hs: Makefile
125 echo "#define LOCALEDIR \"$(localedir)\"" > localedir.new
126 $(srcdir)/../move-if-change localedir.new localedir.h
127 echo timestamp > localedir.hs
129 # Installation rules and other phony targets
131 # These rule has to look for .gmo modules in both srcdir and
132 # the cwd, and has to check that we actually have a catalog
133 # for each language, in case they weren't built or included
134 # with the distribution.
135 installdirs:
136 @$(mkinstalldirs) $(DESTDIR)$(datadir); \
137 cats="$(CATALOGS)"; for cat in $$cats; do \
138 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
139 if [ -f $$cat ] || [ -f $(srcdir)/$$cat ]; then \
140 dir=$(localedir)/$$lang/LC_MESSAGES; \
141 $(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \
142 fi; \
143 done
145 install-strip install: all installdirs
146 cats="$(CATALOGS)"; for cat in $$cats; do \
147 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
148 if [ -f $$cat ]; then :; \
149 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
150 else continue; \
151 fi; \
152 dir=$(localedir)/$$lang/LC_MESSAGES; \
153 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
154 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
155 done
157 mostlyclean:
158 -rm -f *.o
160 clean: mostlyclean
161 -rm -rf libcpp.a $(srcdir)/autom4te.cache
163 distclean: clean
164 -rm -f config.h stamp-h1 config.status config.cache config.log \
165 configure.lineno configure.status.lineno Makefile localedir.h \
166 localedir.hs $(DEPDIR)/*.Po
167 -rmdir $(DEPDIR)
169 maintainer-clean: distclean
170 @echo "This command is intended for maintainers to use"
171 @echo "it deletes files that may require special tools to rebuild."
172 -rm -f $(srcdir)/configure $(srcdir)/aclocal.m4
174 check:
175 installcheck:
176 dvi:
177 pdf:
178 html:
179 info:
180 install-info:
181 install-pdf:
182 install-man:
183 install-html:
185 update-po: $(CATALOGS:.gmo=.pox)
187 .PHONY: installdirs install install-strip mostlyclean clean distclean \
188 maintainer-clean check installcheck dvi pdf html info install-info \
189 install-man update-po install-html
191 # Dependency rule.
192 COMPILE.base = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(ALL_CFLAGS) -c
193 ifeq ($(DEPMODE),depmode=gcc3)
194 # Note that we put the dependencies into a .Tpo file, then move them
195 # into place if the compile succeeds. We need this because gcc does
196 # not atomically write the dependency output file.
197 COMPILE = $(COMPILE.base) -o $@ -MT $@ -MMD -MP -MF $(DEPDIR)/$*.Tpo
198 POSTCOMPILE = @mv $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
199 else
200 COMPILE = source='$<' object='$@' libtool=no DEPDIR=$(DEPDIR) $(DEPMODE) \
201 $(depcomp) $(COMPILE.base)
202 # depcomp handles atomicity for us, so we don't need a postcompile
203 # step.
204 POSTCOMPILE =
205 endif
207 # Implicit rules and I18N
209 .c.o:
210 $(COMPILE) $<
211 $(POSTCOMPILE)
213 # N.B. We do not attempt to copy these into $(srcdir).
214 .po.gmo:
215 $(mkinstalldirs) po
216 $(GMSGFMT) --statistics -o $@ $<
218 # The new .po has to be gone over by hand, so we deposit it into
219 # build/po with a different extension.
220 # If build/po/$(PACKAGE).pot exists, use it (it was just created),
221 # else use the one in srcdir.
222 .po.pox:
223 $(mkinstalldirs) po
224 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
225 then echo po/$(PACKAGE).pot; \
226 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
228 # Rule for regenerating the message template.
229 $(PACKAGE).pot: po/$(PACKAGE).pot
230 po/$(PACKAGE).pot: $(libcpp_a_SOURCES)
231 $(mkinstalldirs) $(srcdir)/po
232 $(XGETTEXT) --default-domain=$(PACKAGE) \
233 --keyword=_ --keyword=N_ \
234 --keyword=cpp_error:3 --keyword=cpp_errno:3 \
235 --keyword=cpp_error_with_line:5 \
236 --keyword=SYNTAX_ERROR --keyword=SYNTAX_ERROR2 \
237 --copyright-holder="Free Software Foundation, Inc." \
238 --msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
239 --language=c -o po/$(PACKAGE).pot.tmp $^
240 sed 's:$(srcdir)/::g' <po/$(PACKAGE).pot.tmp >po/$(PACKAGE).pot
241 rm po/$(PACKAGE).pot.tmp
243 TAGS_SOURCES = $(libcpp_a_SOURCES) internal.h ucnid.h \
244 include/line-map.h include/symtab.h include/cpp-id-data.h \
245 include/cpplib.h include/mkdeps.h system.h
247 TAGS: $(TAGS_SOURCES)
248 cd $(srcdir) && etags $(TAGS_SOURCES)
250 # Tell versions [3.59,3.63) of GNU make to not export all variables.
251 # Otherwise a system limit (for SysV at least) may be exceeded.
252 .NOEXPORT:
254 # Dependencies
255 -include $(patsubst %.o, $(DEPDIR)/%.Po, $(libcpp_a_OBJS))
257 # Dependencies on generated headers have to be explicit.
258 init.o: localedir.h