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
# 2015-Oct-2: Update: You should disregard the below. A more up | |
# to date version of this file is maintained at | |
# https://github.com/biocaml/biocaml/blob/master/etc/OCaml.om. Note | |
# that file is still not very good (we're just hacking and hoping | |
# to avoid OMake at some point), so the caveats below do still | |
# hold. | |
# This is a very rough implementation of an OMake function to compile | |
# a library. It isn't good OMake code and definitely not usable | |
# out-of-the-box. It is only useful for you to read and learn a little |
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
# OMake based build system for an Ocsigen project. I don't claim this | |
# to be a good solution, but it is reasonably clear and complete. I | |
# hope you can benefit from it. | |
# | |
# It is assumed that all files are in a lib/ sub-directory. You can | |
# have a mix of ml and eliom files, and they can optionally have | |
# corresponding mli or eliomi files. About the only thing you should | |
# have to do is list your project's files in SERVER_LIB_FILES and | |
# CLIENT_LIB_FILES. | |
# |