🛠️🐜 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.

51 lines
1.1 KiB

  1. #
  2. # FreeType 2 Win32 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/windows
  16. PLATFORM := windows
  17. # This is used for `make refdoc' and `make refdoc-venv'
  18. #
  19. BIN := Scripts
  20. # The executable file extension (for tools). NOTE: WE INCLUDE THE DOT HERE !!
  21. #
  22. E := .exe
  23. E_BUILD := .exe
  24. # The directory where all library files are placed.
  25. #
  26. # By default, this is the same as $(OBJ_DIR); however, this can be changed
  27. # to suit particular needs.
  28. #
  29. LIB_DIR := $(OBJ_DIR)
  30. # The name of the final library file. Note that the DOS-specific Makefile
  31. # uses a shorter (8.3) name.
  32. #
  33. LIBRARY := $(PROJECT)
  34. # The NO_OUTPUT macro is used to ignore the output of commands.
  35. #
  36. NO_OUTPUT = 2> nul
  37. # EOF