mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
- Update ocaml-examples to match lang/ocaml version
- Respect NOPORTEXAMPLES: Don't install anything if it is set - Adopt port Feature safe: yes
This commit is contained in:
parent
ebf63e9f7f
commit
d8e1b9974d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=287186
@ -6,23 +6,24 @@
|
||||
#
|
||||
|
||||
PORTNAME= ocaml
|
||||
PORTVERSION= 3.11
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 3.12
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://cristal.inria.fr/caml_examples/
|
||||
MASTER_SITES= http://cristal.inria.fr/caml_examples/
|
||||
PKGNAMESUFFIX= -examples
|
||||
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= johans@FreeBSD.org
|
||||
COMMENT= Example programs for the Objective Caml
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
do-install:
|
||||
.ifndef NOPORTEXAMPLES
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
@${TAR} -cf- -C ${WRKSRC} --exclude Imakefile . | \
|
||||
${TAR} -xf- -C ${EXAMPLESDIR}
|
||||
@${FIND} ${EXAMPLESDIR} -type f -exec ${CHMOD} ${SHAREMODE} {} \;
|
||||
@${FIND} ${EXAMPLESDIR} -exec ${CHOWN} ${SHAREOWN} {} \;
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (ocaml-examples-3.11.tar.gz) = 890a1a72ca585d96e9a642771240d598469df68dfe94ed0f54381bd698bcccfd
|
||||
SIZE (ocaml-examples-3.11.tar.gz) = 349117
|
||||
SHA256 (ocaml-examples-3.12.tar.gz) = d8bb0bcf8a0b66f2cb47c372e0fcd7c27d2e0de948d9e8b7fc232cf699083c03
|
||||
SIZE (ocaml-examples-3.12.tar.gz) = 404010
|
||||
|
@ -1,416 +1,505 @@
|
||||
%%EXAMPLESDIR%%/Makefile
|
||||
%%EXAMPLESDIR%%/TODO
|
||||
%%EXAMPLESDIR%%/asl/Makefile
|
||||
%%EXAMPLESDIR%%/asl/README
|
||||
%%EXAMPLESDIR%%/asl/asl.ml
|
||||
%%EXAMPLESDIR%%/asl/asl.mli
|
||||
%%EXAMPLESDIR%%/asl/example.asl
|
||||
%%EXAMPLESDIR%%/asl/example.res
|
||||
%%EXAMPLESDIR%%/asl/loadall.ml
|
||||
%%EXAMPLESDIR%%/asl/main.ml
|
||||
%%EXAMPLESDIR%%/asl/main.mli
|
||||
%%EXAMPLESDIR%%/asl/parser.ml
|
||||
%%EXAMPLESDIR%%/asl/parser.mli
|
||||
%%EXAMPLESDIR%%/asl/prel.ml
|
||||
%%EXAMPLESDIR%%/asl/prel.mli
|
||||
%%EXAMPLESDIR%%/asl/run.ml
|
||||
%%EXAMPLESDIR%%/asl/semant.ml
|
||||
%%EXAMPLESDIR%%/asl/token.ml
|
||||
%%EXAMPLESDIR%%/asl/token.mli
|
||||
%%EXAMPLESDIR%%/asl/typing.ml
|
||||
%%EXAMPLESDIR%%/basics/Makefile
|
||||
%%EXAMPLESDIR%%/basics/README
|
||||
%%EXAMPLESDIR%%/basics/argcargv.ml
|
||||
%%EXAMPLESDIR%%/basics/eng.html
|
||||
%%EXAMPLESDIR%%/basics/explode.ml
|
||||
%%EXAMPLESDIR%%/basics/explode.mli
|
||||
%%EXAMPLESDIR%%/basics/fib.ml
|
||||
%%EXAMPLESDIR%%/basics/fra.html
|
||||
%%EXAMPLESDIR%%/basics/greeting.ml
|
||||
%%EXAMPLESDIR%%/basics/hello.ml
|
||||
%%EXAMPLESDIR%%/basics/kmp.ml
|
||||
%%EXAMPLESDIR%%/basics/loadall.ml
|
||||
%%EXAMPLESDIR%%/basics/queens.ml
|
||||
%%EXAMPLESDIR%%/basics/queens_lazy.ml
|
||||
%%EXAMPLESDIR%%/basics/queens_tail.ml
|
||||
%%EXAMPLESDIR%%/basics/read_points.ml
|
||||
%%EXAMPLESDIR%%/basics/read_points.txt
|
||||
%%EXAMPLESDIR%%/basics/realloc.ml
|
||||
%%EXAMPLESDIR%%/basics/realloc.mli
|
||||
%%EXAMPLESDIR%%/basics/reverse_rec.ml
|
||||
%%EXAMPLESDIR%%/basics/reverse_stdin.ml
|
||||
%%EXAMPLESDIR%%/basics/sieve.ml
|
||||
%%EXAMPLESDIR%%/basics/sieve_vect.c
|
||||
%%EXAMPLESDIR%%/basics/sieve_vect.ml
|
||||
%%EXAMPLESDIR%%/basics/sieve_vect_unsafe.ml
|
||||
%%EXAMPLESDIR%%/basics/soli.ml
|
||||
%%EXAMPLESDIR%%/basics/square.ml
|
||||
%%EXAMPLESDIR%%/basics/strpos.ml
|
||||
%%EXAMPLESDIR%%/basics/wc.ml
|
||||
%%EXAMPLESDIR%%/basics/wc_unix.ml
|
||||
%%EXAMPLESDIR%%/calc/Makefile
|
||||
%%EXAMPLESDIR%%/calc/README
|
||||
%%EXAMPLESDIR%%/calc/calc.ml
|
||||
%%EXAMPLESDIR%%/calc/lexer.mll
|
||||
%%EXAMPLESDIR%%/calc/loadall.ml
|
||||
%%EXAMPLESDIR%%/calc/main.ml
|
||||
%%EXAMPLESDIR%%/calc/parser.mly
|
||||
%%EXAMPLESDIR%%/camltk/Makefile
|
||||
%%EXAMPLESDIR%%/camltk/README
|
||||
%%EXAMPLESDIR%%/camltk/addition.ml
|
||||
%%EXAMPLESDIR%%/camltk/bonjour.ml
|
||||
%%EXAMPLESDIR%%/camltk/bonjour_quit.ml
|
||||
%%EXAMPLESDIR%%/camltk/camleyes.ml
|
||||
%%EXAMPLESDIR%%/camltk/convert.ml
|
||||
%%EXAMPLESDIR%%/camltk/convert_euro.ml
|
||||
%%EXAMPLESDIR%%/camltk/convertion.ml
|
||||
%%EXAMPLESDIR%%/camltk/convertion_euro.ml
|
||||
%%EXAMPLESDIR%%/camltk/eng.html
|
||||
%%EXAMPLESDIR%%/camltk/hello.ml
|
||||
%%EXAMPLESDIR%%/camltk/hello_quit.ml
|
||||
%%EXAMPLESDIR%%/camltk/images/CamlBook.gif
|
||||
%%EXAMPLESDIR%%/camltk/images/Lambda2.back.gif
|
||||
%%EXAMPLESDIR%%/camltk/images/Makefile
|
||||
%%EXAMPLESDIR%%/camltk/images/dojoji.back.gif
|
||||
%%EXAMPLESDIR%%/camltk/joconde.gif
|
||||
%%EXAMPLESDIR%%/camltk/loadall.ml
|
||||
%%EXAMPLESDIR%%/camltk/mytext.ml
|
||||
%%EXAMPLESDIR%%/camltk/rgb.ml
|
||||
%%EXAMPLESDIR%%/camltk/start.ml
|
||||
%%EXAMPLESDIR%%/camltk/stop.ml
|
||||
%%EXAMPLESDIR%%/camltk/taquin.ml
|
||||
%%EXAMPLESDIR%%/camltk/tetris.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/appli.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/complexe.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/complexe0.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/complexegui.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/complexegui0.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/Makefile
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/biconnect.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/biout.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/bipipe.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/bipipe.mli
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/compute.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/connect.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/fork.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/gui.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/make_appli
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/mk_seq.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/multiconnect
|
||||
%%EXAMPLESDIR%%/camltktutorial/servers/pipe.ml
|
||||
%%EXAMPLESDIR%%/camltktutorial/simple.ml
|
||||
%%EXAMPLESDIR%%/colwheel/Makefile
|
||||
%%EXAMPLESDIR%%/colwheel/colwheel.ml
|
||||
%%EXAMPLESDIR%%/colwheel/loadall.ml
|
||||
%%EXAMPLESDIR%%/compress/Makefile
|
||||
%%EXAMPLESDIR%%/compress/compr.ml
|
||||
%%EXAMPLESDIR%%/compress/decompr.ml
|
||||
%%EXAMPLESDIR%%/compress/esbit.ml
|
||||
%%EXAMPLESDIR%%/compress/esbit.mli
|
||||
%%EXAMPLESDIR%%/compress/fileprio.ml
|
||||
%%EXAMPLESDIR%%/compress/fileprio.mli
|
||||
%%EXAMPLESDIR%%/compress/huffman.ml
|
||||
%%EXAMPLESDIR%%/compress/huffman.mli
|
||||
%%EXAMPLESDIR%%/compress/loadall.ml
|
||||
%%EXAMPLESDIR%%/config/Imake.rules
|
||||
%%EXAMPLESDIR%%/config/Imake.tmpl
|
||||
%%EXAMPLESDIR%%/config/Makefile
|
||||
%%EXAMPLESDIR%%/config/coldboot
|
||||
%%EXAMPLESDIR%%/demonstr/Makefile
|
||||
%%EXAMPLESDIR%%/demonstr/asynt.ml
|
||||
%%EXAMPLESDIR%%/demonstr/asynt.mli
|
||||
%%EXAMPLESDIR%%/demonstr/demo.ml
|
||||
%%EXAMPLESDIR%%/demonstr/lexuniv.ml
|
||||
%%EXAMPLESDIR%%/demonstr/lexuniv.mli
|
||||
%%EXAMPLESDIR%%/demonstr/loadall.ml
|
||||
%%EXAMPLESDIR%%/demonstr/prop.ml
|
||||
%%EXAMPLESDIR%%/demonstr/prop.mli
|
||||
%%EXAMPLESDIR%%/dlls/unix/Makefile
|
||||
%%EXAMPLESDIR%%/dlls/unix/client.c
|
||||
%%EXAMPLESDIR%%/dlls/unix/fib.ml
|
||||
%%EXAMPLESDIR%%/dlls/unix/fib_wrappers.c
|
||||
%%EXAMPLESDIR%%/dlls/windows/Makefile
|
||||
%%EXAMPLESDIR%%/dlls/windows/MakefileByteCode
|
||||
%%EXAMPLESDIR%%/dlls/windows/MakefileNative
|
||||
%%EXAMPLESDIR%%/dlls/windows/client.c
|
||||
%%EXAMPLESDIR%%/dlls/windows/fib.ml
|
||||
%%EXAMPLESDIR%%/dlls/windows/fibwrap.c
|
||||
%%EXAMPLESDIR%%/dlls/windows/modwrap.c
|
||||
%%EXAMPLESDIR%%/docteur/Makefile
|
||||
%%EXAMPLESDIR%%/docteur/docteur.ml
|
||||
%%EXAMPLESDIR%%/docteur/loadall.ml
|
||||
%%EXAMPLESDIR%%/doctor/Makefile
|
||||
%%EXAMPLESDIR%%/doctor/doctor.ml
|
||||
%%EXAMPLESDIR%%/doctor/loadall.ml
|
||||
%%EXAMPLESDIR%%/eng.html
|
||||
%%EXAMPLESDIR%%/fra.html
|
||||
%%EXAMPLESDIR%%/grep/Makefile
|
||||
%%EXAMPLESDIR%%/grep/auto.ml
|
||||
%%EXAMPLESDIR%%/grep/auto.mli
|
||||
%%EXAMPLESDIR%%/grep/determ.ml
|
||||
%%EXAMPLESDIR%%/grep/determ.mli
|
||||
%%EXAMPLESDIR%%/grep/ensent.ml
|
||||
%%EXAMPLESDIR%%/grep/ensent.mli
|
||||
%%EXAMPLESDIR%%/grep/expr.ml
|
||||
%%EXAMPLESDIR%%/grep/expr.mli
|
||||
%%EXAMPLESDIR%%/grep/fastgrep.ml
|
||||
%%EXAMPLESDIR%%/grep/fastrec.c
|
||||
%%EXAMPLESDIR%%/grep/fastrec.mli
|
||||
%%EXAMPLESDIR%%/grep/grep.ml
|
||||
%%EXAMPLESDIR%%/grep/loadall.ml
|
||||
%%EXAMPLESDIR%%/grep/makefast
|
||||
%%EXAMPLESDIR%%/hanoi/Makefile
|
||||
%%EXAMPLESDIR%%/hanoi/grahanoi_eng.ml
|
||||
%%EXAMPLESDIR%%/hanoi/grahanoi_fra.ml
|
||||
%%EXAMPLESDIR%%/hanoi/hanoi_eng.ml
|
||||
%%EXAMPLESDIR%%/hanoi/hanoi_fra.ml
|
||||
%%EXAMPLESDIR%%/hanoi/koch.ml
|
||||
%%EXAMPLESDIR%%/hanoi/loadall.ml
|
||||
%%EXAMPLESDIR%%/hanoi/txthanoi_eng.ml
|
||||
%%EXAMPLESDIR%%/hanoi/txthanoi_fra.ml
|
||||
%%EXAMPLESDIR%%/kb/Makefile
|
||||
%%EXAMPLESDIR%%/kb/README
|
||||
%%EXAMPLESDIR%%/kb/equation.ml
|
||||
%%EXAMPLESDIR%%/kb/go.ml
|
||||
%%EXAMPLESDIR%%/kb/kb.ml
|
||||
%%EXAMPLESDIR%%/kb/loadall.ml
|
||||
%%EXAMPLESDIR%%/kb/order.ml
|
||||
%%EXAMPLESDIR%%/kb/prelude.ml
|
||||
%%EXAMPLESDIR%%/kb/terms.ml
|
||||
%%EXAMPLESDIR%%/minicaml/Makefile
|
||||
%%EXAMPLESDIR%%/minicaml/caml.ml
|
||||
%%EXAMPLESDIR%%/minicaml/eval.ml
|
||||
%%EXAMPLESDIR%%/minicaml/eval.mli
|
||||
%%EXAMPLESDIR%%/minicaml/interp.ml
|
||||
%%EXAMPLESDIR%%/minicaml/lexuniv.ml
|
||||
%%EXAMPLESDIR%%/minicaml/lexuniv.mli
|
||||
%%EXAMPLESDIR%%/minicaml/loadall.ml
|
||||
%%EXAMPLESDIR%%/minicaml/syntaxe.ml
|
||||
%%EXAMPLESDIR%%/minicaml/syntaxe.mli
|
||||
%%EXAMPLESDIR%%/minicaml/synthese.ml
|
||||
%%EXAMPLESDIR%%/minicaml/synthese.mli
|
||||
%%EXAMPLESDIR%%/minicaml/types.ml
|
||||
%%EXAMPLESDIR%%/minicaml/types.mli
|
||||
%%EXAMPLESDIR%%/minicaml/typeur.ml
|
||||
%%EXAMPLESDIR%%/minilogo/Makefile
|
||||
%%EXAMPLESDIR%%/minilogo/abstract.ml
|
||||
%%EXAMPLESDIR%%/minilogo/alex.ml
|
||||
%%EXAMPLESDIR%%/minilogo/alex.mli
|
||||
%%EXAMPLESDIR%%/minilogo/asynt.ml
|
||||
%%EXAMPLESDIR%%/minilogo/asynt.mli
|
||||
%%EXAMPLESDIR%%/minilogo/crayon.ml
|
||||
%%EXAMPLESDIR%%/minilogo/crayon.mli
|
||||
%%EXAMPLESDIR%%/minilogo/langage.ml
|
||||
%%EXAMPLESDIR%%/minilogo/langage.mli
|
||||
%%EXAMPLESDIR%%/minilogo/loadall.ml
|
||||
%%EXAMPLESDIR%%/minilogo/logo.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/compile.sh
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/fapply.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/fapply.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/fmod.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/fmod.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/ftype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/imod.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/imod.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/itype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/main.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/expert/restype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/compile.sh
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/fmod.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/fmod.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/ftype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/imod.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/imod.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/itype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/naive/main.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/compile.sh
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/fapply.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/fapply.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/fapplytype.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/fmod.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/fmod.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/ftype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/imod.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/imod.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/itype.mli
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/main.ml
|
||||
%%EXAMPLESDIR%%/modules/functors/wrong/restype.mli
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/src/Makefile
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/src/inside.ml
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/src/inside.mli
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/src/outside.ml
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/src/outside.mli
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/test/Makefile
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/test/use_inside_my_lib.ml
|
||||
%%EXAMPLESDIR%%/modules/libraries/restriction/test/use_my_lib.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/base_module.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/base_module.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/compile
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/doc
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_aggregate.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_aggregate.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_backbone_link.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_backbone_link.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_chemical_group.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_chemical_group.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_formulae.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_formulae.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_lib_frames.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_lib_frames.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_types.mli
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/path.ml
|
||||
%%EXAMPLESDIR%%/modules/module_inclusion/with_include/path.mli
|
||||
%%EXAMPLESDIR%%/modules/module_types/modtype_fun.ml
|
||||
%%EXAMPLESDIR%%/parsing/polish/compile
|
||||
%%EXAMPLESDIR%%/parsing/polish/lexer.ml
|
||||
%%EXAMPLESDIR%%/parsing/polish/lexer.mll
|
||||
%%EXAMPLESDIR%%/parsing/polish/main.ml
|
||||
%%EXAMPLESDIR%%/parsing/polish/parser.mly
|
||||
%%EXAMPLESDIR%%/parsing/polish/parsetree.mli
|
||||
%%EXAMPLESDIR%%/parsing/polish/print_ast.ml
|
||||
%%EXAMPLESDIR%%/parsing/polish/print_ast.mli
|
||||
%%EXAMPLESDIR%%/parsing/polish/scoping.ml
|
||||
%%EXAMPLESDIR%%/parsing/polish/scoping.mli
|
||||
%%EXAMPLESDIR%%/parsing/polish/treat.ml
|
||||
%%EXAMPLESDIR%%/parsing/polish/treat.mli
|
||||
%%EXAMPLESDIR%%/pascal/Makefile
|
||||
%%EXAMPLESDIR%%/pascal/compil.ml
|
||||
%%EXAMPLESDIR%%/pascal/compil.mli
|
||||
%%EXAMPLESDIR%%/pascal/cpascal.ml
|
||||
%%EXAMPLESDIR%%/pascal/envir.ml
|
||||
%%EXAMPLESDIR%%/pascal/envir.mli
|
||||
%%EXAMPLESDIR%%/pascal/fib1.p
|
||||
%%EXAMPLESDIR%%/pascal/fib2.p
|
||||
%%EXAMPLESDIR%%/pascal/interp.ml
|
||||
%%EXAMPLESDIR%%/pascal/interp.mli
|
||||
%%EXAMPLESDIR%%/pascal/ipascal.ml
|
||||
%%EXAMPLESDIR%%/pascal/lexuniv.ml
|
||||
%%EXAMPLESDIR%%/pascal/lexuniv.mli
|
||||
%%EXAMPLESDIR%%/pascal/loadall.ml
|
||||
%%EXAMPLESDIR%%/pascal/reines.p
|
||||
%%EXAMPLESDIR%%/pascal/syntaxe.ml
|
||||
%%EXAMPLESDIR%%/pascal/syntaxe.mli
|
||||
%%EXAMPLESDIR%%/pascal/typage.ml
|
||||
%%EXAMPLESDIR%%/pascal/typage.mli
|
||||
%%EXAMPLESDIR%%/pascal/valeur.ml
|
||||
%%EXAMPLESDIR%%/pascal/valeur.mli
|
||||
%%EXAMPLESDIR%%/picomach/Makefile
|
||||
%%EXAMPLESDIR%%/picomach/asm.ml
|
||||
%%EXAMPLESDIR%%/picomach/code.ml
|
||||
%%EXAMPLESDIR%%/picomach/code.mli
|
||||
%%EXAMPLESDIR%%/picomach/exec.ml
|
||||
%%EXAMPLESDIR%%/picomach/fact.asm
|
||||
%%EXAMPLESDIR%%/picomach/lecture.ml
|
||||
%%EXAMPLESDIR%%/picomach/lecture.mli
|
||||
%%EXAMPLESDIR%%/picomach/lexuniv.ml
|
||||
%%EXAMPLESDIR%%/picomach/lexuniv.mli
|
||||
%%EXAMPLESDIR%%/picomach/loadall.ml
|
||||
%%EXAMPLESDIR%%/picomach/simul.ml
|
||||
%%EXAMPLESDIR%%/picomach/simul.mli
|
||||
%%EXAMPLESDIR%%/picomach/stockage.ml
|
||||
%%EXAMPLESDIR%%/picomach/stockage.mli
|
||||
%%EXAMPLESDIR%%/showsort/Makefile
|
||||
%%EXAMPLESDIR%%/showsort/loadall.ml
|
||||
%%EXAMPLESDIR%%/showsort/showsort.ml
|
||||
%%EXAMPLESDIR%%/simples/date.ml
|
||||
%%EXAMPLESDIR%%/simples/date.pl
|
||||
%%EXAMPLESDIR%%/simples/libperl.ml
|
||||
%%EXAMPLESDIR%%/simples/mots_islandais
|
||||
%%EXAMPLESDIR%%/simples/reminder.pl
|
||||
%%EXAMPLESDIR%%/simples/scan_list.ml
|
||||
%%EXAMPLESDIR%%/simples/test_chomp.pl
|
||||
%%EXAMPLESDIR%%/simples/trad.ml
|
||||
%%EXAMPLESDIR%%/simples/trad.pl
|
||||
%%EXAMPLESDIR%%/soli/Makefile
|
||||
%%EXAMPLESDIR%%/soli/soli.ml
|
||||
%%EXAMPLESDIR%%/soli/soli_opt.ml
|
||||
%%EXAMPLESDIR%%/spirals/Makefile
|
||||
%%EXAMPLESDIR%%/spirals/loadall-bw.ml
|
||||
%%EXAMPLESDIR%%/spirals/loadall.ml
|
||||
%%EXAMPLESDIR%%/spirals/spir_bw.ml
|
||||
%%EXAMPLESDIR%%/spirals/spir.ml
|
||||
%%EXAMPLESDIR%%/sudoku/README
|
||||
%%EXAMPLESDIR%%/sudoku/clean
|
||||
%%EXAMPLESDIR%%/sudoku/compile.bin
|
||||
%%EXAMPLESDIR%%/sudoku/compile.byt
|
||||
%%EXAMPLESDIR%%/sudoku/main.ml
|
||||
%%EXAMPLESDIR%%/sudoku/read.ml
|
||||
%%EXAMPLESDIR%%/sudoku/resolve.ml
|
||||
%%EXAMPLESDIR%%/sudoku/solve.ml
|
||||
%%EXAMPLESDIR%%/sudoku/types.mli
|
||||
%%EXAMPLESDIR%%/sudoku/utils.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/README
|
||||
%%EXAMPLESDIR%%/sudoku_general/clean
|
||||
%%EXAMPLESDIR%%/sudoku_general/compile.bin
|
||||
%%EXAMPLESDIR%%/sudoku_general/compile.byt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example100.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example101.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example400.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example401.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example51.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example81.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example82.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example83.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example93.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example94.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example95.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example96.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example97.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example98.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/example99.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/main.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/read.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/resolve.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/rules.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/sols.txt
|
||||
%%EXAMPLESDIR%%/sudoku_general/solve.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/solve0.ml
|
||||
%%EXAMPLESDIR%%/sudoku_general/types.mli
|
||||
%%EXAMPLESDIR%%/sudoku_general/utils.ml
|
||||
@dirrm %%EXAMPLESDIR%%/sudoku_general
|
||||
@dirrm %%EXAMPLESDIR%%/sudoku
|
||||
@dirrm %%EXAMPLESDIR%%/spirals
|
||||
@dirrm %%EXAMPLESDIR%%/soli
|
||||
@dirrm %%EXAMPLESDIR%%/simples
|
||||
@dirrm %%EXAMPLESDIR%%/showsort
|
||||
@dirrm %%EXAMPLESDIR%%/picomach
|
||||
@dirrm %%EXAMPLESDIR%%/pascal
|
||||
@dirrm %%EXAMPLESDIR%%/parsing/polish
|
||||
@dirrm %%EXAMPLESDIR%%/parsing
|
||||
@dirrm %%EXAMPLESDIR%%/modules/module_types
|
||||
@dirrm %%EXAMPLESDIR%%/modules/module_inclusion/with_sharing
|
||||
@dirrm %%EXAMPLESDIR%%/modules/module_inclusion/with_include
|
||||
@dirrm %%EXAMPLESDIR%%/modules/module_inclusion
|
||||
@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/test
|
||||
@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/src
|
||||
@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/lib
|
||||
@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction
|
||||
@dirrm %%EXAMPLESDIR%%/modules/libraries
|
||||
@dirrm %%EXAMPLESDIR%%/modules/functors/wrong
|
||||
@dirrm %%EXAMPLESDIR%%/modules/functors/naive
|
||||
@dirrm %%EXAMPLESDIR%%/modules/functors/expert
|
||||
@dirrm %%EXAMPLESDIR%%/modules/functors
|
||||
@dirrm %%EXAMPLESDIR%%/modules
|
||||
@dirrm %%EXAMPLESDIR%%/minilogo
|
||||
@dirrm %%EXAMPLESDIR%%/minicaml
|
||||
@dirrm %%EXAMPLESDIR%%/kb
|
||||
@dirrm %%EXAMPLESDIR%%/hanoi
|
||||
@dirrm %%EXAMPLESDIR%%/grep
|
||||
@dirrm %%EXAMPLESDIR%%/doctor
|
||||
@dirrm %%EXAMPLESDIR%%/docteur
|
||||
@dirrm %%EXAMPLESDIR%%/dlls/windows
|
||||
@dirrm %%EXAMPLESDIR%%/dlls/unix
|
||||
@dirrm %%EXAMPLESDIR%%/dlls
|
||||
@dirrm %%EXAMPLESDIR%%/demonstr
|
||||
@dirrm %%EXAMPLESDIR%%/config
|
||||
@dirrm %%EXAMPLESDIR%%/compress
|
||||
@dirrm %%EXAMPLESDIR%%/colwheel
|
||||
@dirrm %%EXAMPLESDIR%%/camltktutorial/servers
|
||||
@dirrm %%EXAMPLESDIR%%/camltktutorial
|
||||
@dirrm %%EXAMPLESDIR%%/camltk/images
|
||||
@dirrmtry %%EXAMPLESDIR%%/camltk
|
||||
@dirrm %%EXAMPLESDIR%%/calc
|
||||
@dirrm %%EXAMPLESDIR%%/basics
|
||||
@dirrm %%EXAMPLESDIR%%/asl
|
||||
@dirrmtry %%EXAMPLESDIR%%
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/TODO
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/asl.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/asl.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/example.asl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/example.res
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/main.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/parser.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/parser.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/prel.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/prel.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/run.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/semant.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/token.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/token.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/asl/typing.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/argcargv.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/eng.html
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/explode.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/explode.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/fib.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/fra.html
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/greeting.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/hello.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/kmp.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/queens.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/queens_lazy.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/queens_tail.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/read_points.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/read_points.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/realloc.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/realloc.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/reverse_rec.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/reverse_stdin.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/sieve.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/sieve_vect.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/sieve_vect.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/sieve_vect_unsafe.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/soli.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/square.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/strpos.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/wc.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/basics/wc_unix.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/calc.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/lexer.mll
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calc/parser.mly
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/addition.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/bonjour.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/bonjour_quit.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/camleyes.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/convert.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/convert_euro.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/convertion.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/convertion_euro.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/eng.html
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/hello.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/hello_quit.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/images/CamlBook.gif
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/images/Lambda2.back.gif
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/images/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/images/dojoji.back.gif
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/joconde.gif
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/mytext.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/rgb.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/start.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/stop.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/taquin.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltk/tetris.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/appli.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/complexe.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/complexe0.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/complexegui.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/complexegui0.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/biconnect.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/biout.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/bipipe.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/bipipe.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/compute.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/connect.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/fork.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/gui.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/make_appli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/mk_seq.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/multiconnect
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/servers/pipe.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/camltktutorial/simple.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/colwheel/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/colwheel/colwheel.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/colwheel/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/compr.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/decompr.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/esbit.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/esbit.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/fileprio.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/fileprio.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/huffman.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/huffman.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/compress/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/config/Imake.rules
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/config/Imake.tmpl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/config/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/config/coldboot
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/asynt.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/asynt.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/demo.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/lexuniv.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/lexuniv.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/prop.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demonstr/prop.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/unix/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/unix/client.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/unix/fib.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/unix/fib_wrappers.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/MakefileByteCode
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/MakefileNative
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/client.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/fib.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/fibwrap.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dlls/windows/modwrap.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/docteur/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/docteur/docteur.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/docteur/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doctor/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doctor/doctor.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/doctor/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eng.html
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fra.html
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/auto.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/auto.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/determ.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/determ.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/ensent.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/ensent.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/expr.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/expr.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/fastgrep.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/fastrec.c
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/fastrec.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/grep.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/grep/makefast
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/grahanoi_eng.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/grahanoi_fra.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/hanoi_eng.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/hanoi_fra.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/koch.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/txthanoi_eng.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hanoi/txthanoi_fra.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/equation.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/go.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/kb.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/order.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/prelude.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/kb/terms.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/caml.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/eval.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/eval.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/interp.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/lexuniv.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/lexuniv.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/syntaxe.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/syntaxe.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/synthese.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/synthese.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/types.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/types.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minicaml/typeur.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/abstract.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/alex.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/alex.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/asynt.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/asynt.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/crayon.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/crayon.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/langage.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/langage.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/minilogo/logo.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/compile.sh
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/fapply.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/fapply.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/fmod.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/fmod.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/ftype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/imod.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/imod.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/itype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/expert/restype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/compile.sh
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/fmod.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/fmod.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/ftype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/imod.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/imod.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/itype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/naive/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/compile.sh
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/fapply.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/fapply.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/fapplytype.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/fmod.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/fmod.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/ftype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/imod.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/imod.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/itype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/functors/wrong/restype.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/src/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/src/inside.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/src/inside.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/src/outside.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/src/outside.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/test/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/test/use_inside_my_lib.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/libraries/restriction/test/use_my_lib.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/base_module.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/base_module.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/compile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/doc
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_aggregate.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_aggregate.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_backbone_link.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_backbone_link.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_chemical_group.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_chemical_group.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_formulae.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_formulae.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_lib_frames.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_lib_frames.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/module_types.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/path.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_inclusion/with_include/path.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/modules/module_types/modtype_fun.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/clean
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/compile_fcn
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/lexer.mll
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/main_fcn.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/parser.mly
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/parsetree.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/print_ast.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/print_ast.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/scoping.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/scoping.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/transl.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/treat_fcn.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/math_expression/treat_fcn.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/.depend
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/Objs.mk
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/ast.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/ast_pprint.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/ast_pprint.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/ast_print.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/hash_table.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/hash_table.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/hash_table_print.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/hash_table_print.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/ident.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/ident.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/lib_pp.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/lib_pp.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/mdl_basics.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/mdl_basics_print.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/name.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/name.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/path.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/path.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/ulist1.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/basics/ulist1.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/config/Caml.mk
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/config/Config.mk
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/config/Config.mk.in
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/config/configure
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/configure
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/deep_ast.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/deep_ast_pprint.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/deep_ast_pprint.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/deep_ast_print.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/exec.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/lexer.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/lexer.mll
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/main_polish.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/parser.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/parser.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/parser.mly
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/polish.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/print_polish.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/scoping.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/scoping.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/splice_ast.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/splice_ast_pprint.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/splice_ast_pprint.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/splice_ast_print.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/splicing.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test0
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test1
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test10
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test11
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test2
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test3
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test4
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test5
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test6
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test7
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test8
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test9
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test91
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test92
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/test93
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/test/testaleph0
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/transl.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/treat_polish.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/matrix_expression/treat_polish.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/clean
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/compile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/lexer.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/lexer.mll
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/parser.mly
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/parsetree.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/print_ast.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/print_ast.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/scoping.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/scoping.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/treat.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/parsing/polish/treat.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/compil.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/compil.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/cpascal.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/envir.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/envir.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/fib1.p
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/fib2.p
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/interp.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/interp.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/ipascal.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/lexuniv.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/lexuniv.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/reines.p
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/syntaxe.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/syntaxe.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/typage.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/typage.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/valeur.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pascal/valeur.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/asm.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/code.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/code.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/exec.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/fact.asm
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/lecture.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/lecture.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/lexuniv.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/lexuniv.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/simul.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/simul.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/stockage.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/picomach/stockage.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showsort/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showsort/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/showsort/showsort.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/date.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/date.pl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/libperl.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/mots_islandais
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/reminder.pl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/scan_list.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/test_chomp.pl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/trad.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simples/trad.pl
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soli/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soli/soli.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soli/soli_opt.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spirals/Makefile
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spirals/loadall-bw.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spirals/loadall.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spirals/spir.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/spirals/spir_bw.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/clean
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/compile.bin
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/compile.byt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/read.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/resolve.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/solve.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/types.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku/utils.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/clean
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/compile.bin
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/compile.byt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example100.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example101.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example400.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example401.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example51.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example81.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example82.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example83.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example93.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example94.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example95.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example96.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example97.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example98.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/example99.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/main.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/read.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/resolve.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/rules.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/sols.txt
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/solve.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/solve0.ml
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/types.mli
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sudoku_general/utils.ml
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/asl
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/basics
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/calc
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/camltk/images
|
||||
%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%/camltk
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/camltktutorial/servers
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/camltktutorial
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/colwheel
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/compress
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/config
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/demonstr
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dlls/unix
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dlls/windows
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/dlls
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/docteur
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/doctor
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/grep
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/hanoi
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/kb
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/minicaml
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/minilogo
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/test
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/src
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction/lib
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/libraries/restriction
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/libraries
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/module_types
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/functors/wrong
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/functors/expert
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/functors/naive
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/functors
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/module_inclusion/with_sharing
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/module_inclusion/with_include
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules/module_inclusion
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/modules
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing/math_expression
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing/polish
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing/matrix_expression/test
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing/matrix_expression/config
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing/matrix_expression/basics
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing/matrix_expression
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/parsing
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pascal
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/picomach
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/showsort
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/simples
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/soli
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/spirals
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sudoku
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/sudoku_general
|
||||
%%PORTEXAMPLES%%@dirrmtry %%EXAMPLESDIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user