Makefile.am 792 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Conditional submodule for llvm
  3. #
  4. # make reset-llvm will checkout a version of llvm which is suitable for this version of mono
  5. # into $top_srcdir/llvm/llvm.
  6. #
  7. LLVM_PATH=llvm
  8. include $(top_srcdir)/scripts/submodules/versions.mk
  9. $(eval $(call ValidateVersionTemplate,llvm,LLVM))
  10. # Bump the given submodule to the revision given by the REV make variable
  11. # If COMMIT is 1, commit the change
  12. bump-llvm: __bump-version-llvm
  13. # Bump the given submodule to the branch given by the BRANCH/REMOTE_BRANCH make variables
  14. # If COMMIT is 1, commit the change
  15. bump-branch-llvm: __bump-branch-llvm
  16. # Bump the given submodule to its current GIT version
  17. # If COMMIT is 1, commit the change
  18. bump-current-llvm: __bump-current-version-llvm
  19. clean-local:
  20. $(RM) -r $(LLVM_PATH)
  21. EXTRA_DIST=SUBMODULES.json