Edit

kc3-lang/freetype/builds/detect.mk

Branch :

  • Show log

    Commit

  • Author : David Turner
    Date : 2000-07-08 00:41:13
    Hash : a90663f5
    Message : vast clean-up of the sources in order to allow flat directory compilation (by defining the FT_FLAT_COMPILE macro at compile time..) moved "freetype2/BUILD" to "freetype2/docs/BUILD"

  • builds/detect.mk
  • #
    # FreeType 2 host platform detection rules
    #
    
    
    # Copyright 1996-2000 by
    # David Turner, Robert Wilhelm, and Werner Lemberg.
    #
    # This file is part of the FreeType project, and may only be used, modified,
    # and distributed under the terms of the FreeType project license,
    # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
    # indicate that you have read the license and understand and accept it
    # fully.
    
    
    # This sub-Makefile is in charge of detecting the current platform.  It sets
    # the following variables:
    #
    #   BUILD        The configuration and system-specific directory.  Usually
    #                `freetype/builds/$(PLATFORM)' but can be different for
    #                custom builds of the library.
    #
    # The following variables must be defined in system specific `detect.mk'
    # files:
    #
    #   PLATFORM     The detected platform.  This will default to `ansi' if
    #                auto-detection fails.
    #   CONFIG_FILE  The configuration sub-makefile to use.  This usually depends
    #                on the compiler defined in the `CC' environment variable.
    #   DELETE       The shell command used to remove a given file.
    #   COPY         The shell command used to copy one file.
    #   SEP          The platform-specific directory separator.
    #   CC           The compiler to use.
    #
    # You need to set the following variable(s) before calling it:
    #
    #   TOP          The top-most directory in the FreeType library source
    #                hierarchy.  If not defined, it will default to `.'.
    
    # If TOP is not defined, default it to `.'
    #
    ifndef TOP
      TOP := .
    endif
    
    # Set auto-detection default to `ansi' resp. UNIX-like operating systems.
    # Note that we delay the evaluation of $(BUILD_CONFIG_), $(BUILD), and
    # $(CONFIG_RULES).
    #
    PLATFORM := ansi
    DELETE   := $(RM)
    COPY     := cp
    SEP      := /
    
    BUILD_CONFIG_ = $(TOP)$(SEP)builds$(SEP)
    BUILD         = $(BUILD_CONFIG_)$(PLATFORM)
    CONFIG_RULES  = $(BUILD)$(SEP)$(CONFIG_FILE)
    
    # We define the BACKSLASH variable to hold a single back-slash character.
    # This is needed because a line like
    #
    #   SEP := \
    #
    # does not work with GNU Make (the backslash is interpreted as a line
    # continuation).  While a line like
    #
    #   SEP := \\
    #
    # really defines $(SEP) as `\' on Unix, and `\\' on Dos and Windows!
    #
    BACKSLASH := $(strip \ )
    
    # Now, include all detection rule files found in the `builds/<system>'
    # directories.  Note that the calling order of the various `detect.mk' files
    # isn't predictable.
    #
    include $(wildcard $(BUILD_CONFIG_)*/detect.mk)
    
    # In case no detection rule file was successful, use the default.
    #
    ifndef CONFIG_FILE
      CONFIG_FILE := ansi.mk
      setup: std_setup
    endif
    
    # The following targets are equivalent, with the exception that they use
    # a slightly different syntax for the `echo' command.
    #
    # std_setup: defined for most (i.e. Unix-like) platforms
    # dos_setup: defined for Dos-ish platforms like Dos, Windows & OS/2
    #
    .PHONY: std_setup dos_setup
    
    std_setup:
    	@echo ""
    	@echo "FreeType build system -- automatic system detection"
    	@echo ""
    	@echo "The following settings are used:"
    	@echo ""
    	@echo "  platform                    $(PLATFORM)"
    	@echo "  compiler                    $(CC)"
    	@echo "  configuration directory     $(BUILD)"
    	@echo "  configuration rules         $(CONFIG_RULES)"
    	@echo ""
    	@echo "If this does not correspond to your system or settings please remove the file"
    	@echo "\`$(CONFIG_MK)' from this directory then read the INSTALL file for help."
    	@echo ""
    	@echo "Otherwise, simply type \`make' again to build the library."
    	@echo ""
    	@$(COPY) $(CONFIG_RULES) $(CONFIG_MK)
    
    dos_setup:
    	@echo