##########################################################################
# ocaml-gettext: a library to translate messages #
# #
# Copyright (C) 2003-2008 Sylvain Le Gall <sylvain@le-gall.net> #
# #
# This library is free software; you can redistribute it and/or #
# modify it under the terms of the GNU Lesser General Public #
# License as published by the Free Software Foundation; either #
# version 2.1 of the License, or (at your option) any later version; #
# with the OCaml static compilation exception. #
# #
# This library 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 #
# Lesser General Public License for more details. #
# #
# You should have received a copy of the GNU Lesser General Public #
# License along with this library; if not, write to the Free Software #
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 #
# USA #
##########################################################################
NAME = gettext
CMO =
LIBRARY = true
REQUIRES = fileutils
PREDICATES =
INSTALLIB = META
all:
distclean::
-$(RM) gettextConfig.ml
-$(RM) META
##############################
# Ocaml Gettext base library #
##############################
CMO_BASE = \
gettextConfig.cmo \
gettextCategory.cmo \
gettextTypes.cmo \
gettextUtils.cmo \
gettextModules.cmo \
gettextCompat.cmo \
gettext.cmo \
gettextFormat_parser.cmo \
gettextFormat_lexer.cmo \
gettextFormat.cmo \
gettextMo_int32.cmo \
gettextMo_parser.cmo \
gettextMo_lexer.cmo \
gettextMo.cmo \
gettextDummy.cmo
INSTALLIB += \
gettextBase.cma \
gettextBase.cmxa \
gettextBase.a \
gettextTypes.cmi \
gettextDummy.cmi \
gettext.cmi
INSTALLIB += $(CMO_BASE:.cmo=.cmx)
gettextCompat.cmo: gettextCompat.cmi
gettextCompat.cmx: gettextCompat.cmi
gettext.cmo: gettext.cmi
gettext.cmx: gettext.cmi
gettextMo_parser.cmo: gettextMo_parser.cmi
gettextMo_parser.cmx: gettextMo_parser.cmi
gettextFormat_parser.cmo: gettextFormat_parser.cmi
gettextFormat_parser.cmx: gettextFormat_parser.cmi
gettextBase.cma: $(CMO_BASE)
gettextBase.cmxa: $(CMO_BASE:.cmo=.cmx)
clean::
-$(RM) gettextMo_parser.output
-$(RM) gettextMo_parser.ml
-$(RM) gettextMo_parser.mli
-$(RM) gettextDummy.mli
-$(RM) gettextTypes.mli
###################################
# Ocaml Gettext extension library #
###################################
CMO_EXTENSION= \
gettextLocale_types.cmo \
gettextLocale_parser.cmo \
gettextLocale_lexer.cmo \
gettextLocale.cmo \
gettextDomain.cmo \
gettextCharset.cmo \
gettextTranslate.cmo \
gettextRealize.cmo \
gettextPo_utils.cmo \
gettextPoComment_parser.cmo \
gettextPo_lexer.cmo \
gettextPo_parser.cmo \
gettextPo.cmo \
gettextCompile.cmo
INSTALLIB += \
gettextExtension.cma \
gettextExtension.cmxa \
gettextExtension.a \
gettextConfig.cmi \
gettextModules.cmi \
gettextFormat.cmi \
gettextMo.cmi \
gettextCategory.cmi \
gettextLocale.cmi \
gettextDomain.cmi \
gettextCharset.cmi \
gettextTranslate.cmi \
gettextRealize.cmi \
gettextPo.cmi \
gettextUtils.cmi \
gettextCompat.cmi \
gettextCompile.cmi
INSTALLIB += $(CMO_EXTENSION:.cmo=.cmx)
gettextPo_lexer.cmo: gettextPo_parser.cmi gettextPoComment_parser.cmi
gettextPo_lexer.cmx: gettextPo_parser.cmi gettextPoComment_parser.cmi
gettextPoComment_parser.cmo: gettextPoComment_parser.cmi
gettextPoComment_parser.cmx: gettextPoComment_parser.cmi
gettextPo_parser.cmo: gettextPo_parser.cmi gettextPo_lexer.cmi
gettextPo_parser.cmx: gettextPo_parser.cmi gettextPo_lexer.cmi
gettextLocale_parser.cmo: gettextLocale_parser.cmi
gettextLocale_parser.cmx: gettextLocale_parser.cmi
gettextExtension.cma: $(CMO_EXTENSION)
gettextExtension.cmxa: $(CMO_EXTENSION:.cmo=.cmx)
clean::
-$(RM) gettextPoComment_parser.output
-$(RM) gettextPoComment_parser.ml
-$(RM) gettextPoComment_parser.mli
-$(RM) gettextPo_parser.output
-$(RM) gettextPo_parser.ml
-$(RM) gettextPo_parser.mli
-$(RM) gettextFormat_parser.output
-$(RM) gettextFormat_parser.ml
-$(RM) gettextFormat_parser.mli
-$(RM) gettextLocale_parser.output
-$(RM) gettextLocale_parser.ml
-$(RM) gettextLocale_parser.mli
-$(RM) gettextLocale.mli
-$(RM) gettextFormat.mli
-$(RM) gettextCharset.mli
-$(RM) gettextCategory.mli
-$(RM) gettextRealize.mli
-$(RM) gettextTranslate.mli
-$(RM) gettextConfig.mli
-$(RM) gettextDomain.mli
-$(RM) gettextModules.mli
-$(RM) gettextUtils.mli
-$(RM) gettextPo.mli
-$(RM) gettextCompile.mli
-$(RM) gettextMo.mli
########################
# Pa_gettext extension #
########################
INSTALLIB += \
pr_gettext.cmo
pr_gettext.cmo: pr_gettext.ml
ocamlc \
-I +camlp4 \
-I $(shell ocamlc -where)/camlp4/Camlp4Parsers \
-pp camlp4of \
camlp4lib.cma \
gettextBase.cma \
gettextExtension.cma \
-c $< -o $@
include ../ConfMakefile
include ../TopMakefile