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
|
#*********************************************************************#
# #
# 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.6 2004/09/27 15:34:07 weis Exp $ *)
include ../Makefile.config
include Makefile.fortest
all: byt opt
LINKFLAGS= $(LINKFLAGS_CAMLIMAGES)
byt: test.ml
$(CAMLC) $(COMPFLAGS_CAMLIMAGES) $(DLLPATHS) $(LINKFLAGS) \
-o test.byt test.ml
opt: test.ml
$(CAMLOPT) $(COMPFLAGS_CAMLIMAGES) $(LINKFLAGS:.cma=.cmxa) \
-o test test.ml
clean::
rm -f test.byt test *.cm* *.o out.image screen.bmp
depend: .depend
.depend:
$(CAMLDEP) $(COMPFLAGS) */*.mli */*.ml > .depend
.SUFFIXES:
.SUFFIXES: .ml .mli .cmo .cmi .cmx .mll .mly .c .o
.ml.cmo:
$(CAMLC) $(COMPFLAGS) -c $<
.mli.cmi:
$(CAMLC) $(COMPFLAGS) -c $<
.ml.cmx:
$(CAMLOPT) $(COMPFLAGS) -c $<
.mll.cmo:
$(CAMLLEX) $<
$(CAMLC) $(COMPFLAGS) -c $*.ml
.mll.cmx:
$(CAMLLEX) $<
$(CAMLOPT) $(COMPFLAGS) -c $*.ml
.mly.cmo:
$(CAMLYACC) $<
$(CAMLC) $(COMPFLAGS) -c $*.mli
$(CAMLC) $(COMPFLAGS) -c $*.ml
.mly.cmx:
$(CAMLYACC) $<
$(CAMLOPT) $(COMPFLAGS) -c $*.mli
$(CAMLOPT) $(COMPFLAGS) -c $*.ml
.mly.cmi:
$(CAMLYACC) $<
$(CAMLC) $(COMPFLAGS) -c $*.mli
.mll.ml:
$(CAMLLEX) $<
.mly.ml:
$(CAMLYACC) $<
.c.o:
$(CAMLC) -ccopt "-o `echo $< | sed -e s/\.c$$/.o/`" -c $<
include .depend
|