2007-09-18 12:49:39 +00:00
|
|
|
##===- bindings/ocaml/Makefile -----------------------------*- Makefile -*-===##
|
2014-10-28 06:15:18 +00:00
|
|
|
#
|
2007-09-18 12:49:39 +00:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:11:13 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2014-10-28 06:15:18 +00:00
|
|
|
#
|
2007-09-18 12:49:39 +00:00
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
LEVEL := ../..
|
2013-11-06 09:21:25 +00:00
|
|
|
DIRS = llvm bitreader bitwriter irreader analysis target executionengine \
|
2014-05-01 21:00:52 +00:00
|
|
|
transforms linker backends all_backends
|
2008-03-10 15:58:40 +00:00
|
|
|
ExtraMakefiles = $(PROJ_OBJ_DIR)/Makefile.ocaml
|
2007-09-18 12:49:39 +00:00
|
|
|
|
2008-03-10 15:49:16 +00:00
|
|
|
ocamldoc:
|
|
|
|
$(Verb) for i in $(DIRS) ; do \
|
|
|
|
$(MAKE) -C $$i ocamldoc; \
|
|
|
|
done
|
|
|
|
|
2007-09-18 12:49:39 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|