~ubuntu-branches/debian/squeeze/camlimages/squeeze

« back to all changes in this revision

Viewing changes to bmp/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Le Gall, Ralf Treinen, Sylvain Le Gall
  • Date: 2009-03-05 00:19:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090305001932-f0hstlmun8hxvs0r
Tags: 1:3.0.1-1
[ Ralf Treinen ]
* Updated debian/watch.

[ Sylvain Le Gall ]
* New upstream version:
  * Remove useless patches
  * Adapt debian/rules and other debhelper files
  * Add debian/patches/fix_3_0_1 to fix various problem (probably due to
    OCaml 3.11 migration)
* Depends on version 2.12 of lablgtk2
* Add dh-ocaml build-dependency (rules/ocaml.mk)
* Add ${misc:Depends} to dependencies
* Update Homepage field into debian/control and debian/copyright
* Add license version for debian packaging
* Directly use eng.html rather than creating a linked index.html file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#*********************************************************************#
2
 
#                                                                     #
3
 
#                          Caml Images                                #
4
 
#                                                                     #
5
 
#            Fran�ois Pessaux, projet Cristal, INRIA Rocquencourt     #
6
 
#            Pierre Weis, projet Cristal, INRIA Rocquencourt          #
7
 
#            Jun Furuse, projet Cristal, INRIA Rocquencourt           #
8
 
#                                                                     #
9
 
#  Copyright 1999-2004,                                               #
10
 
#  Institut National de Recherche en Informatique et en Automatique.  #
11
 
#  Distributed only by permission.                                    #
12
 
#                                                                     #
13
 
#*********************************************************************#
14
 
 
15
 
#(* $Id: Makefile,v 1.3 2004/10/01 10:26:45 weis Exp $ *)
16
 
 
17
 
include ../Makefile.config
18
 
include ../Makefile.build
19
 
 
20
 
####################################### drivers ##############################
21
 
 
22
 
LIBNAME         = $(LIBPREFIX)bmp
23
 
EXTCLIB         = $(LIBBMP)
24
 
EXTMLLIB        =
25
 
CFLAGS          =
26
 
COMPFLAGS       = -I ../corelib
27
 
MLMODULES       = bmp oBmp
28
 
CMODULES        = 
29
 
 
30
 
MLOBJS          = $(addsuffix .cmo, $(MLMODULES))
31
 
COBJS           = $(addsuffix .o, $(CMODULES))
32
 
CMA             = $(LIBNAME).cma
33
 
CMXA            = $(LIBNAME).cmxa
34
 
CLIB            =
35
 
CDLL            =
36
 
 
37
 
byt: $(CMA) $(CLIB)
38
 
 
39
 
opt: $(CMXA) $(CLIB)
40
 
 
41
 
#######
42
 
 
43
 
all: byt opt
44
 
 
45
 
include ../Makefile.shared