summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Weis <Pierre.Weis@inria.fr>2013-02-27 19:23:39 +0000
committerPierre Weis <Pierre.Weis@inria.fr>2013-02-27 19:23:39 +0000
commit982cce67214cc69006c9a06a09cf51cb0c2f1e58 (patch)
tree3165195d613269c21dc5ba41a85a5c6c86637c63
parentf3ffe32385c7b513022304ef33e21f53d217e92a (diff)
downloadocaml-982cce67214cc69006c9a06a09cf51cb0c2f1e58.tar.gz
Adding taquin (from caml_examples) to the examples.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13324 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r--otherlibs/labltk/examples_camltk/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/otherlibs/labltk/examples_camltk/Makefile b/otherlibs/labltk/examples_camltk/Makefile
index 937026880e..a5786b00af 100644
--- a/otherlibs/labltk/examples_camltk/Makefile
+++ b/otherlibs/labltk/examples_camltk/Makefile
@@ -25,7 +25,7 @@ WITH_BIN_CAMLTK=labltk.cmxa camltk.cmx
BYT_EXECS =\
addition.byt helloworld.byt winskel.byt fileinput.byt\
- eyes.byt tetris.byt mytext.byt fileopen.byt\
+ eyes.byt taquin.byt tetris.byt mytext.byt fileopen.byt\
BIN_EXECS=$(BYT_EXECS:.byt=.bin)
@@ -35,14 +35,13 @@ all: byt bin
byt: $(BYT_EXECS)
-#opt: hello.opt demo.opt eyes.opt calc.opt clock.opt tetris.opt
+#opt: hello.opt demo.opt calc.opt clock.opt tetris.opt
bin: opt
opt: $(BIN_EXECS)
addition.bin: addition.cmx
- echo $(BIN_EXECS);
$(CAMLOPT) $(BIN_COMPFLAGS) -o $@ $(WITH_BIN_CAMLTK) addition.cmx
helloworld.bin: helloworld.cmx
@@ -60,6 +59,9 @@ socketinput.bin: socketinput.cmx
eyes.bin: eyes.cmx
$(CAMLOPT) $(BIN_COMPFLAGS) -o $@ unix.cmxa $(WITH_BIN_CAMLTK) eyes.cmx
+taquin.bin: taquin.cmx
+ $(CAMLOPT) $(BIN_COMPFLAGS) -o $@ unix.cmxa $(WITH_BIN_CAMLTK) taquin.cmx
+
tetris.bin: tetris.cmx
$(CAMLOPT) $(BIN_COMPFLAGS) -o $@ unix.cmxa $(WITH_BIN_CAMLTK) tetris.cmx
@@ -88,17 +90,15 @@ socketinput.byt: socketinput.cmo
eyes.byt: eyes.cmo
$(CAMLC) $(BYT_COMPFLAGS) -o $@ unix.cma $(LIBNAME).cma eyes.cmo
+taquin.byt: taquin.cmo
+ $(CAMLC) $(BYT_COMPFLAGS) -o $@ unix.cma $(LIBNAME).cma taquin.cmo
+
tetris.byt: tetris.cmo
$(CAMLC) $(BYT_COMPFLAGS) -o $@ unix.cma $(LIBNAME).cma tetris.cmo
mytext.byt: mytext.cmo
$(CAMLC) $(BYT_COMPFLAGS) -o $@ unix.cma $(LIBNAME).cma mytext.cmo
-# graph.byt: graphics.cmo graphics_test.cmo
-# $(CAMLC) -o $@ graphics.cmo graphics_test.cmo
-#
-# graphics_test.cmo: graphics.cmo
-
fileopen.byt: fileopen.cmo
$(CAMLC) $(BYT_COMPFLAGS) -o $@ $(LIBNAME).cma fileopen.cmo