put files in different directories

Ignore-this: 2df11f9183d273759941b09dbec314c6

darcs-hash:20110920122950-c41ad-eec84c9824fc0077abec452a2d865990a443df63
This commit is contained in:
Jeremie Dimino 2011-09-20 14:29:50 +02:00
parent bfc7f9aad1
commit 5433a5cdd8
14 changed files with 10 additions and 5 deletions

6
_oasis
View File

@ -27,7 +27,7 @@ Library "optcomp"
CompiledObject: byte CompiledObject: byte
Library utop Library utop
Path: src Path: src/common
Modules: UTop Modules: UTop
InternalModules: UTop_private InternalModules: UTop_private
BuildDepends: findlib, lambda-term (>= 1.1), lwt.syntax BuildDepends: findlib, lambda-term (>= 1.1), lwt.syntax
@ -36,14 +36,14 @@ Library utop
Executable utop Executable utop
Install: true Install: true
Path: src Path: src/console
CompiledObject: byte CompiledObject: byte
MainIs: uTop_console_top.ml MainIs: uTop_console_top.ml
BuildDepends: utop, findlib, lambda-term, lwt.syntax BuildDepends: utop, findlib, lambda-term, lwt.syntax
Executable "utop-emacs" Executable "utop-emacs"
Install: true Install: true
Path: src Path: src/emacs
CompiledObject: byte CompiledObject: byte
MainIs: uTop_emacs_top.ml MainIs: uTop_emacs_top.ml
BuildDepends: utop, findlib, lambda-term, lwt.syntax, threads BuildDepends: utop, findlib, lambda-term, lwt.syntax, threads

9
_tags
View File

@ -1,10 +1,15 @@
# -*- conf -*- # -*- conf -*-
# Use camlp4 on all files
<**/*.ml>: syntax_camlp4o, pkg_lwt.syntax, pa_optcomp <**/*.ml>: syntax_camlp4o, pkg_lwt.syntax, pa_optcomp
# Do not use optcomp on syntax extensions
<syntax/*.ml>: -pa_optcomp <syntax/*.ml>: -pa_optcomp
<src/*>: use_compiler_libs, pkg_lambda-term, pkg_findlib
# Needed for building toplevels
<src/**>: use_compiler_libs, pkg_lambda-term, pkg_findlib
<**/*.top>: use_utop <**/*.top>: use_utop
<**/uTop_emacs_top.top>: pkg_threads <src/emacs/uTop_emacs_top.top>: pkg_threads
# OASIS_START # OASIS_START
# OASIS_STOP # OASIS_STOP