File: dune

package info (click to toggle)
headache 1.08-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: ml: 707; xml: 218; makefile: 73; sh: 8
file content (32 lines) | stat: -rw-r--r-- 616 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(library
     (name headache)
     (modules Model Config_lex Config_parse Config Info Skip)
     (libraries camomile str)
)

(ocamllex config_lex)
(ocamlyacc config_parse)

(executable
     (name mkconfig)
     (modules Mkconfig)
     (libraries headache)
)

(rule
    (targets config_builtin.ml)
    (deps mkconfig.exe config_builtin.txt)
    (action (run ./mkconfig.exe))
)

(executable
      (name headache_tool)
      (public_name headache)
      (modules Headache_tool Config_builtin)
      (libraries headache unix)
)

(install
   (section doc)
   (files "doc/manual.pdf" "doc/manual.html" "doc/manual.txt")
)