Clone of mesa.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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)