-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
50 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
config_builtin.ml | ||
_build | ||
*.native | ||
.merlin | ||
headache.install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
(library | ||
(name headache) | ||
(modules Model Config_lex Config_parse Config Info Skip) | ||
(libraries camomile str bytes) | ||
) | ||
|
||
(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") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(lang dune 1.6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters