prefix.mk 750 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. #######################################################################
  6. # Master "Core Components" for computing program prefixes #
  7. #######################################################################
  8. #
  9. # Object prefixes
  10. #
  11. ifndef OBJ_PREFIX
  12. OBJ_PREFIX =
  13. endif
  14. #
  15. # Library suffixes
  16. #
  17. ifndef LIB_PREFIX
  18. LIB_PREFIX = lib
  19. endif
  20. ifndef DLL_PREFIX
  21. DLL_PREFIX = lib
  22. endif
  23. ifndef IMPORT_LIB_PREFIX
  24. IMPORT_LIB_PREFIX =
  25. endif
  26. #
  27. # Program prefixes
  28. #
  29. ifndef PROG_PREFIX
  30. PROG_PREFIX =
  31. endif
  32. MK_PREFIX = included