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

« back to all changes in this revision

Viewing changes to examples/config/Imake.tmpl

  • 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
 
LIBDIR=/usr/local/lib/ocaml/
2
 
CAMLC=ocamlc
3
 
CAMLCOPT=ocamlopt
4
 
COMPFLAGS=-g
5
 
COMPFLAGSOPT=
6
 
CAMLLIBR=ocamllibr
7
 
CAMLLEX=ocamllex
8
 
CAMLYACC=ocamlyacc
9
 
CAMLDEP=ocamldep -pp camlp4o
10
 
CPP=/lib/cpp -P
11
 
RM=rm -f
12
 
CP=cp -p -f
13
 
TOP=TOPDIR
14
 
CONFIG=$(TOP)/config
15
 
 
16
 
#include "Imake.rules"
17
 
 
18
 
all::
19
 
allopt:opt
20
 
 
21
 
/**/# (begin Imakefile)
22
 
#include INCLUDE_IMAKEFILE
23
 
/**/# (end Imakefile)
24
 
 
25
 
clean::
26
 
        $(RM) *.cmi *.cmix *.cmo *.cmx *.o a.out* *~ *.opt #*#
27
 
 
28
 
depend::
29
 
 
30
 
beforedepend::
31
 
 
32
 
mfile:
33
 
        imake -I$(CONFIG) -DTOPDIR=$(TOP)
34
 
 
35
 
makefiles:: beforedepend mfile depend
36
 
 
37
 
.SUFFIXES: .mli .cmi .ml .cmo .cmx
38
 
 
39
 
.mli.cmi:
40
 
        $(CAMLC) $(COMPFLAGS) -c $<
41
 
 
42
 
.ml.cmo:
43
 
        $(CAMLC) $(COMPFLAGS) -c $<
44
 
 
45
 
.ml.cmx:
46
 
        $(CAMLCOPT) $(COMPFLAGSOPT) -c $<
47
 
 
48
 
/**/# Generated dependencies below