🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB

  1. #
  2. # FreeType 2 OS/2 specific definitions
  3. #
  4. # Copyright (C) 1996-2021 by
  5. # David Turner, Robert Wilhelm, and Werner Lemberg.
  6. #
  7. # This file is part of the FreeType project, and may only be used, modified,
  8. # and distributed under the terms of the FreeType project license,
  9. # LICENSE.TXT. By continuing to use, modify, or distribute this file you
  10. # indicate that you have read the license and understand and accept it
  11. # fully.
  12. DELETE := del
  13. CAT := type
  14. SEP := $(strip \ )
  15. PLATFORM_DIR := $(TOP_DIR)/builds/os2
  16. PLATFORM := os2
  17. # This is used for `make refdoc' and `make refdoc-venv'
  18. #
  19. BIN := Scripts
  20. # The executable file extension (for tools), *with* leading dot.
  21. #
  22. E := .exe
  23. # The directory where all library files are placed.
  24. #
  25. # By default, this is the same as $(OBJ_DIR); however, this can be changed
  26. # to suit particular needs.
  27. #
  28. LIB_DIR := $(OBJ_DIR)
  29. # The name of the final library file. Note that the DOS-specific Makefile
  30. # uses a shorter (8.3) name.
  31. #
  32. LIBRARY := $(PROJECT)
  33. # The NO_OUTPUT macro is used to ignore the output of commands.
  34. #
  35. NO_OUTPUT = 2> nul
  36. # EOF