2004-05-24 12:50:45 +02:00
|
|
|
# @configure_input@
|
2004-08-25 10:10:02 +02:00
|
|
|
# Makefile for libcpp. Run 'configure' to generate Makefile from Makefile.in
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
# Copyright (C) 2004 Free Software Foundation, Inc.
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
#This file is part of libcpp.
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
#libcpp 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.
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
#libcpp 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.
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
#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.
|
2004-06-05 22:58:06 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
@SET_MAKE@
|
2004-05-24 12:50:45 +02:00
|
|
|
|
|
|
|
srcdir = @srcdir@
|
2004-08-25 14:57:05 +02:00
|
|
|
top_builddir = .
|
2004-05-24 12:50:45 +02:00
|
|
|
VPATH = @srcdir@
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
AR = ar
|
|
|
|
ARFLAGS = cru
|
|
|
|
ACLOCAL = @ACLOCAL@
|
|
|
|
AUTOCONF = @AUTOCONF@
|
|
|
|
AUTOHEADER = @AUTOHEADER@
|
|
|
|
CATALOGS = @CATALOGS@
|
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
CPP = @CPP@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
EXEEXT = @EXEEXT@
|
|
|
|
GMSGFMT = @GMSGFMT@
|
|
|
|
INCINTL = @INCINTL@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
|
|
|
LIBICONV = @LIBICONV@
|
|
|
|
LIBINTL = @LIBINTL@
|
|
|
|
PACKAGE = @PACKAGE@
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
SHELL = @SHELL@
|
2004-08-25 10:10:02 +02:00
|
|
|
USED_CATALOGS = @USED_CATALOGS@
|
2004-05-24 12:50:45 +02:00
|
|
|
XGETTEXT = @XGETTEXT@
|
2004-08-25 10:10:02 +02:00
|
|
|
|
2004-05-24 12:50:45 +02:00
|
|
|
datadir = @datadir@
|
2004-08-25 10:10:02 +02:00
|
|
|
exec_prefix = @prefix@
|
2004-05-24 12:50:45 +02:00
|
|
|
libdir = @libdir@
|
|
|
|
localedir = $(datadir)/locale
|
2004-08-25 10:10:02 +02:00
|
|
|
prefix = @prefix@
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
MSGMERGE = msgmerge
|
|
|
|
mkinstalldirs = $(SHELL) $(srcdir)/../mkinstalldirs
|
|
|
|
DEFS = -DLOCALEDIR="\"$(localedir)\""
|
|
|
|
INCLUDES = -I$(srcdir) -I. -I$(srcdir)/../include @INCINTL@ \
|
|
|
|
-I$(srcdir)/include
|
|
|
|
|
|
|
|
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
|
|
|
|
makedepend_OBJS = makedepend.o
|
|
|
|
|
|
|
|
libcpp_a_SOURCES = charset.c directives.c errors.c expr.c files.c \
|
2004-05-24 12:50:45 +02:00
|
|
|
identifiers.c init.c lex.c line-map.c macro.c mkdeps.c \
|
|
|
|
pch.c symtab.c traditional.c
|
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
all: libcpp.a makedepend$(EXEEXT) $(USED_CATALOGS)
|
2004-05-24 12:50:45 +02:00
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
.SUFFIXES: .c .gmo .o .obj .po .pox
|
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
libcpp.a: $(libcpp_a_OBJS)
|
2004-05-24 12:50:45 +02:00
|
|
|
-rm -f libcpp.a
|
2004-08-25 10:10:02 +02:00
|
|
|
$(AR) $(ARFLAGS) libcpp.a $(libcpp_a_OBJS)
|
2004-05-24 12:50:45 +02:00
|
|
|
$(RANLIB) libcpp.a
|
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
makedepend$(EXEEXT): $(makedepend_OBJS) libcpp.a ../libiberty/libiberty.a
|
2004-06-05 22:58:06 +02:00
|
|
|
@rm -f makedepend$(EXEEXT)
|
2004-08-25 10:10:02 +02:00
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o makedepend$(EXEEXT) \
|
|
|
|
$(makedepend_OBJS) libcpp.a ../libiberty/libiberty.a \
|
|
|
|
$(LIBINTL) $(LIBICONV)
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
# Rules to rebuild the configuration
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
Makefile: $(srcdir)/Makefile.in config.status
|
|
|
|
$(SHELL) ./config.status Makefile
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
config.status: $(srcdir)/configure
|
|
|
|
$(SHELL) ./config.status --recheck
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
$(srcdir)/configure: @MAINT@ $(srcdir)/aclocal.m4
|
|
|
|
cd $(srcdir) && $(AUTOCONF)
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
$(srcdir)/aclocal.m4: @MAINT@ $(srcdir)/../config/acx.m4 \
|
|
|
|
$(srcdir)/../config/gettext.m4 $(srcdir)/configure.ac
|
|
|
|
cd $(srcdir) && $(ACLOCAL) -I ../config
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
config.h: stamp-h1
|
|
|
|
test -f config.h || (rm -f stamp-h1 && $(MAKE) stamp-h1)
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
stamp-h1: $(srcdir)/config.in config.status
|
|
|
|
-rm -f stamp-h1
|
|
|
|
$(SHELL) ./config.status config.h
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
$(srcdir)/config.in: @MAINT@ $(srcdir)/configure
|
|
|
|
cd $(srcdir) && $(AUTOHEADER)
|
|
|
|
-rm -f stamp-h1
|
|
|
|
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
# Installation rules and other phony targets
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
# These rule has to look for .gmo modules in both srcdir and
|
|
|
|
# the cwd, and has to check that we actually have a catalog
|
|
|
|
# for each language, in case they weren't built or included
|
|
|
|
# with the distribution.
|
|
|
|
installdirs:
|
|
|
|
@$(mkinstalldirs) $(DESTDIR)$(datadir); \
|
|
|
|
cats="$(CATALOGS)"; for cat in $$cats; do \
|
|
|
|
lang=`basename $$cat | sed 's/\.gmo$$//'`; \
|
|
|
|
if [ -f $$cat ] || [ -f $(srcdir)/$$cat ]; then \
|
|
|
|
dir=$(localedir)/$$lang/LC_MESSAGES; \
|
|
|
|
$(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \
|
|
|
|
fi; \
|
|
|
|
done
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
install-strip install: all installdirs
|
|
|
|
cats="$(CATALOGS)"; for cat in $$cats; do \
|
|
|
|
lang=`basename $$cat | sed 's/\.gmo$$//'`; \
|
|
|
|
if [ -f $$cat ]; then :; \
|
|
|
|
elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
|
|
|
|
else continue; \
|
|
|
|
fi; \
|
|
|
|
dir=$(localedir)/$$lang/LC_MESSAGES; \
|
|
|
|
echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
|
|
|
|
$(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
|
|
|
|
done
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
mostlyclean:
|
|
|
|
-rm -f *.o
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
clean: mostlyclean
|
|
|
|
-rm -f makedepend$(EXEEXT) libcpp.a $(srcdir)/autom4te.cache
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
distclean: clean
|
|
|
|
-rm -f config.h stamp-h1 config.status config.cache config.log \
|
|
|
|
configure.lineno configure.status.lineno Makefile
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
maintainer-clean: distclean
|
|
|
|
@echo "This command is intended for maintainers to use"
|
|
|
|
@echo "it deletes files that may require special tools to rebuild."
|
|
|
|
-rm -f $(srcdir)/configure $(srcdir)/aclocal.m4
|
|
|
|
|
|
|
|
check:
|
|
|
|
installcheck:
|
|
|
|
dvi:
|
|
|
|
html:
|
|
|
|
info:
|
|
|
|
install-info:
|
2004-05-24 12:50:45 +02:00
|
|
|
install-man:
|
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
update-po: $(CATALOGS:.gmo=.pox)
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
.PHONY: installdirs install install-strip mostlyclean clean distclean \
|
|
|
|
maintainer-clean check installcheck dvi html info install-info \
|
|
|
|
install-man update-po
|
2004-05-24 12:50:45 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
# Implicit rules and I18N
|
2004-06-09 11:07:11 +02:00
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
.c.o:
|
|
|
|
$(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) -c $<
|
2004-05-24 12:50:45 +02:00
|
|
|
|
|
|
|
# N.B. We do not attempt to copy these into $(srcdir).
|
|
|
|
.po.gmo:
|
|
|
|
-test -d po || mkdir po
|
|
|
|
$(GMSGFMT) --statistics -o $@ $<
|
|
|
|
|
|
|
|
# The new .po has to be gone over by hand, so we deposit it into
|
|
|
|
# build/po with a different extension.
|
|
|
|
# If build/po/$(PACKAGE).pot exists, use it (it was just created),
|
|
|
|
# else use the one in srcdir.
|
|
|
|
.po.pox:
|
|
|
|
-test -d po || mkdir po
|
|
|
|
$(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
|
|
|
|
then echo po/$(PACKAGE).pot; \
|
|
|
|
else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
|
|
|
|
|
2004-08-25 10:10:02 +02:00
|
|
|
# Rule for regenerating the message template.
|
|
|
|
po/$(PACKAGE).pot: $(libcpp_a_SOURCES)
|
2004-05-24 12:50:45 +02:00
|
|
|
-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 \
|
|
|
|
--copyright-holder="Free Software Foundation, Inc." \
|
|
|
|
--msgid-bugs-address="http://gcc.gnu.org/bugs.html" \
|
|
|
|
--language=c -o po/$(PACKAGE).pot $^
|
2004-08-25 10:10:02 +02:00
|
|
|
|
|
|
|
|
2004-05-24 12:50:45 +02:00
|
|
|
# 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:
|
2004-08-25 10:10:02 +02:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
|
|
|
|
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
|
|
|
|
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)
|