~ubuntu-branches/ubuntu/trusty/ocamlnet/trusty

« back to all changes in this revision

Viewing changes to examples/multicore/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-09-02 14:12:33 UTC
  • mfrom: (18.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110902141233-zbj0ygxb92u6gy4z
Tags: 3.4-1
* New upstream release
  - add a new NetcgiRequire directive to ease dependency management
    (Closes: #637147)
  - remove patches that were applied upstream:
    + Added-missing-shebang-lines-in-example-shell-scripts
    + Try-also-ocamlc-for-POSIX-threads

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
all: create_join chameneos pipeline nqueens
 
2
 
 
3
OCAMLC=ocamlc
 
4
# set to ocamlopt to get native executables
 
5
 
 
6
clean:
 
7
        rm -f *.cmi *.cmo *.cma *.cmx *.cmxa *.o *.a 
 
8
        rm -f create_join chameneos pipeline nqueens
 
9
 
 
10
create_join: create_join.ml
 
11
        ocamlfind $(OCAMLC) -o create_join -package netmulticore -linkpkg -g \
 
12
          create_join.ml
 
13
 
 
14
chameneos: chameneos.ml
 
15
        ocamlfind $(OCAMLC) -o chameneos -package netmulticore,netcamlbox \
 
16
           -linkpkg -g \
 
17
          chameneos.ml
 
18
 
 
19
pipeline: pipeline.ml
 
20
        ocamlfind $(OCAMLC) -o pipeline -package netmulticore,netcamlbox \
 
21
           -linkpkg -g \
 
22
          pipeline.ml
 
23
 
 
24
nqueens: nqueens.ml
 
25
        ocamlfind $(OCAMLC) -o nqueens -package netmulticore,netcamlbox \
 
26
           -linkpkg -g \
 
27
          nqueens.ml
 
28