Clone of mesa.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

version.mk 341B

1234567891011121314151617
  1. #!/usr/bin/make -sf
  2. # Print the various Mesa version fields. This is mostly used to add the
  3. # version to configure.
  4. # This reflects that this script is usually called from the toplevel
  5. TOP = .
  6. include $(TOP)/configs/default
  7. version:
  8. @echo $(MESA_VERSION)
  9. major:
  10. @echo $(MESA_MAJOR)
  11. minor:
  12. @echo $(MESA_MINOR)
  13. tiny:
  14. @echo $(MESA_TINY)