Advertisement
Guest User

Untitled

a guest
May 25th, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.08 KB | None | 0 0
  1. ########################################################################
  2. # Permission is hereby granted, free of charge, to any person
  3. # obtaining a copy of this file, to deal in the File without
  4. # restriction, including without limitation the rights to use,
  5. # copy, modify, merge, publish, distribute, sublicense, and/or
  6. # sell copies of the File, and to permit persons to whom the
  7. # File is furnished to do so, subject to the following condition:
  8. #
  9. # THE FILE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  10. # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  11. # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  12. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
  13. # DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  14. # OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE FILE OR
  15. # THE USE OR OTHER DEALINGS IN THE FILE.
  16.  
  17. ########################################################################
  18. # The standard OMakefile.
  19. # You will usually need to modify this file for your project.
  20.  
  21. # Delete this line once you have configured this file
  22. eprintln($(CWD)/OMakefile is not configured)
  23.  
  24. ########################################################################
  25. # Phony targets are scoped, so you probably want to declare them first.
  26. #
  27.  
  28. # .PHONY: all install clean
  29.  
  30. ########################################################################
  31. # Subdirectories.
  32. # You may want to include some subdirectories in this project.
  33. # If so, define the subdirectory targets and uncomment this section.
  34. #
  35.  
  36. # .SUBDIRS:
  37.  
  38. ########################################################################
  39. # C configuration.
  40. # Delete this section if you are not building C files.
  41. #
  42.  
  43. ################################################
  44. # Configuration. You might want to modify any of these
  45. # configuration variables.
  46. #
  47.  
  48. # CFLAGS +=
  49. # ASFLAGS +=
  50. # LDFLAGS +=
  51. # INCLUDES +=
  52.  
  53. ################################################
  54. # Uncomment the following section if you want
  55. # to build a C program in the current directory.
  56. #
  57.  
  58. # CFILES[] =
  59. # file1
  60. # main
  61. #
  62. # MAIN = main
  63. #
  64. # .DEFAULT: $(CProgram $(MAIN), $(CFILES))
  65.  
  66. ################################################
  67. # Uncomment the following section if you want to build a C library
  68. # in the current directory.
  69. #
  70.  
  71. # LIBFILES[] =
  72. # file1
  73. # file2
  74. #
  75. # LIB = libxxx
  76. #
  77. # .DEFAULT: $(StaticCLibrary $(LIB), $(LIBFILES))
  78.  
  79. ########################################################################
  80. # OCaml configuration.
  81. # Delete this section if you are not building OCaml files.
  82. #
  83.  
  84. ################################################
  85. # Configuration. You may want to modify any of these configuration
  86. # variables.
  87. #
  88.  
  89. #
  90. # This project requires ocamlfind (default - false).
  91. #
  92. # USE_OCAMLFIND = true
  93. #
  94. # OCAMLPACKS[] =
  95. # pack1
  96. # pack2
  97. #
  98. # if $(not $(OCAMLFIND_EXISTS))
  99. # eprintln(This project requires ocamlfind, but is was not found.)
  100. # eprintln(You need to install ocamlfind and run "omake --configure".)
  101. # exit 1
  102.  
  103. #
  104. # Include path
  105. #
  106. # OCAMLINCLUDES +=
  107.  
  108. #
  109. # Compile native or byte code?
  110. #
  111. # The default values are defined as follows:
  112. #
  113. # NATIVE_ENABLED = $(OCAMLOPT_EXISTS)
  114. # BYTE_ENABLED = $(not $(OCAMLOPT_EXISTS))
  115.  
  116. #
  117. # Various options
  118. #
  119. # OCAMLFLAGS +=
  120. # OCAMLCFLAGS +=
  121. # OCAMLOPTFLAGS +=
  122. # OCAML_LINK_FLAGS +=
  123. # OCAML_BYTE_LINK_FLAGS +=
  124. # OCAML_NATIVE_LINK_FLAGS +=
  125.  
  126. ################################################
  127. # Generated files
  128. #
  129. # Workaround for the fact that ocamldep does not pay attention to .mll
  130. # and .mly files.
  131. #
  132. # OCamlGeneratedFiles(parser.ml lexer.ml)
  133.  
  134. ################################################
  135. # Build an OCaml library
  136. #
  137.  
  138. # FILES[] =
  139. # file1
  140. # file2
  141. #
  142. # LIB = main
  143. #
  144. # .DEFAULT: $(OCamlLibrary $(LIB), $(FILES))
  145.  
  146. ################################################
  147. # Build an OCaml program
  148. #
  149.  
  150. # FILES[] =
  151. # file1
  152. # file2
  153. #
  154. # PROGRAM =
  155. # OCAML_LIBS +=
  156. # OCAML_CLIBS +=
  157. # OCAML_OTHER_LIBS +=
  158. # OCAML_LIB_FLAGS +=
  159. #
  160. # .DEFAULT: $(OCamlProgram $(PROGRAM), $(FILES))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement