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

81 lines
1.7 KiB

2 years ago
  1. #
  2. # FreeType 2 Win32-LCC specific definitions
  3. #
  4. # Copyright (C) 1996-2022 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. # Command line name
  13. #
  14. CC := lcc
  15. COMPILER_SEP := $(SEP)
  16. # The object file extension (for standard and static libraries). This can be
  17. # .o, .tco, .obj, etc., depending on the platform.
  18. #
  19. O := obj
  20. SO := obj
  21. # The library file extension (for standard and static libraries). This can
  22. # be .a, .lib, etc., depending on the platform.
  23. #
  24. A := lib
  25. SA := lib
  26. # Path inclusion flag. Some compilers use a different flag than `-I' to
  27. # specify an additional include path. Examples are `/i=' or `-J'.
  28. #
  29. I := -I
  30. # C flag used to define a macro before the compilation of a given source
  31. # object. Usually it is `-D' like in `-DDEBUG'.
  32. #
  33. D := -D
  34. # The link flag used to specify a given library file on link. Note that
  35. # this is only used to compile the demo programs, not the library itself.
  36. #
  37. L := -Fl
  38. # Target flag.
  39. #
  40. T := -Fo
  41. # C flags
  42. #
  43. # These should concern: debug output, optimization & warnings.
  44. #
  45. # Use the ANSIFLAGS variable to define the compiler flags used to enforce
  46. # ANSI compliance.
  47. #
  48. CFLAGS ?= -c -g2 -O
  49. # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
  50. #
  51. # LCC is pure ANSI anyway!
  52. #
  53. ANSIFLAGS ?=
  54. # library linking
  55. #
  56. #CLEAN_LIBRARY :=
  57. LINK_LIBRARY = lcclib /out:$(subst /,$(COMPILER_SEP),$@ $(OBJECTS_LIST))
  58. # EOF