1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
##########################################################################
# Copyright © 2009-2013 Stéphane Glondu <steph@glondu.net> #
# © 2010-2013 Mehdi Dogguy <mehdi@dogguy.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU Affero General Public License as #
# published by the Free Software Foundation, either version 3 of the #
# License, or (at your option) any later version, with the additional #
# exemption that compiling, linking, and/or using OpenSSL is allowed. #
# #
# This program 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 #
# Affero General Public License for more details. #
# #
# You should have received a copy of the GNU Affero General Public #
# License along with this program. If not, see #
# <http://www.gnu.org/licenses/>. #
##########################################################################
# Configuration
NAME := ben
PREFIX := /usr/local
# Auto-detection
ifeq ($(OCAMLBEST),)
HAS_OPT := $(shell if which ocamlopt > /dev/null; then echo yes; fi)
else ifeq ($(OCAMLBEST),native)
HAS_OPT := yes
else
HAS_OPT :=
endif
OCAML_STDLIB_DIR ?= $(shell /usr/bin/ocamlc -where)
HAS_NATDYN =
PLUGIN_EXT = cma
ifneq (,$(wildcard $(OCAML_STDLIB_DIR)/dynlink.cmxa))
HAS_NATDYN := yes
PLUGIN_EXT := cmxs
endif
CLASSIC := $(if $(INSIDE_EMACS),-classic-display)
ARCH := $(if $(HAS_NATDYN),native,byte)
OCAMLBUILD := ocamlbuild $(CLASSIC) $(if $(HAS_OPT),,-byte-plugin)
OCAMLBUILD_ENV :=
# Build
TARGETS := lib/benl.cma $(if $(HAS_OPT),lib/benl.cmxa) bin/$(NAME).$(ARCH) modules.dot
GENERATED := modules.png
TEMPLATES := $(foreach TPL,$(wildcard templates/*),$(subst .ml,.$(PLUGIN_EXT),$(TPL)))
# modules w/o interfaces
EXTRA_FILES := $(shell find lib -iname "*.ml" | xargs -I {} sh -c "test -f '{}'i || echo '{}'")
# C stubs magic for bytecode
export CAML_LD_LIBRARY_PATH=$(CURDIR)/_build/lib
# Installation
BINDIR := $(DESTDIR)$(PREFIX)/bin
PLUGINSDIR := $(DESTDIR)$(PREFIX)/lib/ben/templates
all: build templates $(GENERATED) doc
.PHONY: build doc clean env
build:
$(OCAMLBUILD_ENV) $(OCAMLBUILD) $(TARGETS)
doc:
$(MAKE) -C doc all
typerex: OCAMLBUILD_ENV := OCAMLFIND_COMMANDS='ocamlc=ocp-ocamlc ocamlopt=ocp-ocamlopt'
typerex: all
%.png: build
dot -Tpng $(patsubst %.png,_build/%.dot,$@) > $@
.PHONY: templates build-templates install-templates
templates: build-templates
build-templates: $(patsubst %,build-%,$(TEMPLATES))
build-templates/%:
$(OCAMLBUILD_ENV) $(OCAMLBUILD) templates/$*
install-templates:
install -d $(PLUGINSDIR)
$(MAKE) $(patsubst %,install-%,$(TEMPLATES))
install-templates/%:
install _build/templates/$* $(PLUGINSDIR)/$*
clean:
$(OCAMLBUILD) -clean
rm -f *~ */*~ $(GENERATED)
env:
@echo export CAML_LD_LIBRARY_PATH=$(CAML_LD_LIBRARY_PATH)
.PHONY: install
install: install-templates
install -d $(BINDIR)
install _build/bin/$(NAME).$(ARCH) $(BINDIR)/ben
ocamlfind install $(NAME) $(wildcard $(addprefix _build/lib/,*.cmi *.mli *.cma *.cmx *.cmxa *.a *.so)) $(EXTRA_FILES) META
|