~ubuntu-branches/ubuntu/hardy/ocaml-doc/hardy

« back to all changes in this revision

Viewing changes to examples/docteur/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2007-09-08 01:49:22 UTC
  • mfrom: (0.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070908014922-lvihyehz0ndq7suu
Tags: 3.10-1
* New upstream release.
* Removed camlp4 documentation since it is not up-to-date.
* Updated to standards version 3.7.2, no changes needed.
* Updated my email address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile generated by imake - do not edit!
2
 
# $XConsortium: imake.c,v 1.91 95/01/12 16:15:47 kaleb Exp $
3
 
 
4
 
LIBDIR=/usr/local/lib/ocaml/
5
 
CAMLC=ocamlc
6
 
CAMLCOPT=ocamlopt
7
 
COMPFLAGS=-g
8
 
COMPFLAGSOPT=
9
 
CAMLLIBR=ocamllibr
10
 
CAMLLEX=ocamllex
11
 
CAMLYACC=ocamlyacc
12
 
CAMLDEP=ocamldep -pp camlp4o
13
 
CPP=/lib/cpp -P
14
 
RM=rm -f
15
 
CP=cp -p -f
16
 
TOP=../.
17
 
CONFIG=$(TOP)/config
18
 
 
19
 
all::
20
 
allopt:opt
21
 
 
22
 
# (begin Imakefile)
23
 
 
24
 
docteur.OBJS=docteur.cmo
25
 
docteur.FILES=$(docteur.OBJS:.cmo=.ml)
26
 
 
27
 
all::docteur
28
 
 
29
 
depend::
30
 
        $(CAMLDEP) $(docteur.FILES) >> Makefile
31
 
 
32
 
clean::
33
 
        $(RM) docteur
34
 
 
35
 
docteur: docteur.cmo
36
 
        $(CAMLC) $(LINKFLAGS)  docteur.cmo -o docteur
37
 
 
38
 
docteur.BINOBJS=docteur.cmx
39
 
docteur.FILES=$(docteur.BINOBJS:.cmx=.ml)
40
 
 
41
 
opt::docteur.opt
42
 
 
43
 
depend::
44
 
        $(CAMLDEP) $(docteur.FILES) >> Makefile
45
 
 
46
 
clean::
47
 
        $(RM) docteur docteur.opt
48
 
 
49
 
docteur.opt: docteur.cmx
50
 
        $(CAMLCOPT) $(LINKFLAGSOPT)  docteur.cmx -o docteur.opt
51
 
        $(CP) docteur.opt docteur
52
 
 
53
 
# (end Imakefile)
54
 
 
55
 
clean::
56
 
        $(RM) *.cmi *.cmix *.cmo *.cmx *.o a.out* *~ *.opt #*#
57
 
 
58
 
depend::
59
 
 
60
 
beforedepend::
61
 
 
62
 
mfile:
63
 
        imake -I$(CONFIG) -DTOPDIR=$(TOP)
64
 
 
65
 
makefiles:: beforedepend mfile depend
66
 
 
67
 
.SUFFIXES: .mli .cmi .ml .cmo .cmx
68
 
 
69
 
.mli.cmi:
70
 
        $(CAMLC) $(COMPFLAGS) -c $<
71
 
 
72
 
.ml.cmo:
73
 
        $(CAMLC) $(COMPFLAGS) -c $<
74
 
 
75
 
.ml.cmx:
76
 
        $(CAMLCOPT) $(COMPFLAGSOPT) -c $<
77
 
 
78
 
# Generated dependencies below
79