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
|
#*********************************************************************#
# #
# Caml Images #
# #
# Franois Pessaux, projet Cristal, INRIA Rocquencourt #
# Pierre Weis, projet Cristal, INRIA Rocquencourt #
# Jun Furuse, projet Cristal, INRIA Rocquencourt #
# #
# Copyright 1999-2004, #
# Institut National de Recherche en Informatique et en Automatique. #
# Distributed only by permission. #
# #
#*********************************************************************#
#(* $Id: Makefile,v 1.5 2004/10/01 10:26:45 weis Exp $ *)
include ../Makefile.config
include ../Makefile.build
####################################### drivers ##############################
LIBNAME = $(LIBPREFIX)core
EXTCLIB =
EXTMLLIB =
CFLAGS =
COMPFLAGS =
MLMODULES = camlimages mstring color region tmpfile bitmap \
genimage \
rgba32 rgb24 index8 index16 cmyk32 \
images oColor oImages reduce geometry colorhist \
blend
CMODULES =
MLOBJS = $(addsuffix .cmo, $(MLMODULES))
COBJS = $(addsuffix .o, $(CMODULES))
CMA = $(LIBNAME).cma
CMXA = $(LIBNAME).cmxa
CLIB =
CDLL =
#######
all: byt opt
byt: $(CMA) $(CLIB)
opt: $(CMXA) $(CLIB)
include ../Makefile.shared
|