Advertisement
Sagotch

Makefile

Sep 16th, 2014
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. all: test.cmo test.byte
  2.  
  3. test.cmo:
  4. /home/ju/.opam/4.02.0/bin/ocamlc.opt -bin-annot -c \
  5. -o _obuild/test.cmo \
  6. -I ./_obuild \
  7. -I ./test \
  8. -I /home/ju/.opam/4.02.0/lib/ollvm_llvmgateway \
  9. -I /home/ju/.opam/4.02.0/lib/llvm \
  10. -I /home/ju/.opam/4.02.0/lib/ollvm \
  11. test/test.ml
  12.  
  13. test.byte:
  14. /home/ju/.opam/4.02.0/bin/ocamlc.opt \
  15. -cc g++ \
  16. -ccopt -I/usr/lib/llvm-3.5/include/ \
  17. -ccopt -DNDEBUG \
  18. -ccopt -D_GNU_SOURCE \
  19. -ccopt -D__STDC_CONSTANT_MACROS \
  20. -ccopt -D__STDC_FORMAT_MACROS \
  21. -ccopt -D__STDC_LIMIT_MACROS \
  22. -ccopt -g \
  23. -ccopt -O2 \
  24. -ccopt -fomit-frame-pointer \
  25. -ccopt -std=c++11 \
  26. -ccopt -fvisibility-inlines-hidden \
  27. -ccopt -fno-exceptions \
  28. -ccopt -fPIC \
  29. -ccopt -Woverloaded-virtual \
  30. -ccopt -ffunction-sections \
  31. -ccopt -fdata-sections \
  32. -ccopt -Wcast-qual \
  33. -ccopt -L/usr/lib/llvm-3.5/lib \
  34. -cclib -lLLVMCore \
  35. -cclib -lLLVMSupport \
  36. -o _obuild/test.byte \
  37. -I ./_obuild/ \
  38. -I ./test \
  39. -I /home/ju/.opam/4.02.0/lib/ollvm_llvmgateway \
  40. -I /home/ju/.opam/4.02.0/lib/llvm \
  41. -I /home/ju/.opam/4.02.0/lib/ollvm \
  42. ollvm.cma llvm.cma ollvm_llvmgateway.cma test.cmo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement