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

« back to all changes in this revision

Viewing changes to examples/dlls/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
 
CAMLLIB=\camlfi\lib
2
 
CAMLC=ocamlc
3
 
CAMLOPT=ocamlopt
4
 
CAMLRUNLIB=libcamlrun.lib
5
 
CAMLASM=libasmrun.lib
6
 
 
7
 
client.exe: client.c camldll.lib
8
 
        cl -o client.exe client.c camldll.lib
9
 
 
10
 
camldll.dll camldll.lib: modcaml.obj modwrap.obj
11
 
        link /nologo /dll /libpath:"$(CAMLLIB)" \
12
 
          /out:camldll.dll /implib:camldll.lib \
13
 
          /export:fib \
14
 
          /export:format_result \
15
 
          modwrap.obj modcaml.obj \
16
 
          libcamlrun.lib
17
 
 
18
 
modwrap.obj: modwrap.c
19
 
        ocamlc -c modwrap.c
20
 
 
21
 
modcaml.obj: fib.ml
22
 
        ocamlc -output-obj -o modcaml.obj fib.ml