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)
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/>.
32 AUTOHEADER
= @AUTOHEADER@
33 CATALOGS
= $(patsubst %,po
/%,@CATALOGS@
)
36 WARN_CFLAGS
= @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
42 INSTALL_DATA
= @INSTALL_DATA@
43 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
44 INSTALL_SCRIPT
= @INSTALL_SCRIPT@
51 USED_CATALOGS
= @USED_CATALOGS@
56 datarootdir
= @datarootdir@
58 exec_prefix = @
prefix@
60 localedir
= $(datadir)/locale
64 mkinstalldirs
= $(SHELL
) $(srcdir)/..
/mkinstalldirs
65 depcomp
= $(SHELL
) $(srcdir)/..
/depcomp
67 INCLUDES
= -I
$(srcdir) -I.
-I
$(srcdir)/..
/include @INCINTL@ \
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
)
83 .SUFFIXES
: .c .gmo .o .obj .po .pox
85 libcpp.a
: $(libcpp_a_OBJS
)
87 $(AR
) $(ARFLAGS
) libcpp.a
$(libcpp_a_OBJS
)
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
110 test -f config.h ||
(rm -f stamp-h1
&& $(MAKE
) stamp-h1
)
112 stamp-h1
: $(srcdir)/config.in config.status
114 $(SHELL
) .
/config.status config.h
116 $(srcdir)/config.in
: @MAINT@
$(srcdir)/configure.ac
117 cd
$(srcdir) && $(AUTOHEADER
)
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.
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; \
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; \
152 dir=$(localedir
)/$$lang/LC_MESSAGES
; \
153 echo
$(INSTALL_DATA
) $$cat $(DESTDIR
)$$dir/$(PACKAGE
).mo
; \
154 $(INSTALL_DATA
) $$cat $(DESTDIR
)$$dir/$(PACKAGE
).mo
; \
161 -rm -rf libcpp.a
$(srcdir)/autom4te.cache
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
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
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
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
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
207 # Implicit rules and I18N
213 # N.B. We do not attempt to copy these into $(srcdir).
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.
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.
255 -include $(patsubst %.o
, $(DEPDIR
)/%.Po
, $(libcpp_a_OBJS
))
257 # Dependencies on generated headers have to be explicit.