modules/freetype2/builds/modules.mk

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #
     2 # FreeType 2 modules sub-Makefile
     3 #
     6 # Copyright 1996-2000, 2003, 2006, 2008, 2014 by
     7 # David Turner, Robert Wilhelm, and Werner Lemberg.
     8 #
     9 # This file is part of the FreeType project, and may only be used, modified,
    10 # and distributed under the terms of the FreeType project license,
    11 # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
    12 # indicate that you have read the license and understand and accept it
    13 # fully.
    16 # DO NOT INVOKE THIS MAKEFILE DIRECTLY!  IT IS MEANT TO BE INCLUDED BY
    17 # OTHER MAKEFILES.
    20 # This file is in charge of handling the generation of the modules list
    21 # file.
    24 # Build the modules list.
    25 #
    26 $(FTMODULE_H): $(MODULES_CFG)
    27 	$(FTMODULE_H_INIT)
    28 	$(FTMODULE_H_CREATE)
    29 	$(FTMODULE_H_DONE)
    31 ifneq ($(findstring $(PLATFORM),dos windows os2),)
    32   OPEN_MODULE   := @echo$(space)
    33   CLOSE_MODULE  :=  >> $(subst /,$(SEP),$(FTMODULE_H))
    34   REMOVE_MODULE := @-$(DELETE) $(subst /,$(SEP),$(FTMODULE_H))
    35 else
    36   OPEN_MODULE   := @echo "
    37   CLOSE_MODULE  := " >> $(FTMODULE_H)
    38   REMOVE_MODULE := @-$(DELETE) $(FTMODULE_H)
    39 endif
    42 define FTMODULE_H_INIT
    43 $(REMOVE_MODULE)
    44 @-echo Generating modules list in $(FTMODULE_H)...
    45 $(OPEN_MODULE)/* This is a generated file. */$(CLOSE_MODULE)
    46 endef
    48 # It is no mistake that the final closing parenthesis is on the
    49 # next line -- it produces proper newlines during the expansion
    50 # of `foreach'.
    51 #
    52 define FTMODULE_H_CREATE
    53 $(foreach COMMAND,$(FTMODULE_H_COMMANDS),$($(COMMAND))
    54 )
    55 endef
    57 define FTMODULE_H_DONE
    58 $(OPEN_MODULE)/* EOF */$(CLOSE_MODULE)
    59 @echo done.
    60 endef
    63 # $(OPEN_DRIVER) & $(CLOSE_DRIVER) are used to specify a given font driver
    64 # in the `module.mk' rules file.
    65 #
    66 OPEN_DRIVER  := $(OPEN_MODULE)FT_USE_MODULE(
    67 CLOSE_DRIVER := )$(CLOSE_MODULE)
    69 ECHO_DRIVER      := @echo "* module:$(space)
    70 ECHO_DRIVER_DESC := (
    71 ECHO_DRIVER_DONE := )"
    73 # Each `module.mk' in the `src/*' subdirectories adds a variable with
    74 # commands to $(FTMODULE_H_COMMANDS).  Note that we can't use SRC_DIR here.
    75 #
    76 -include $(patsubst %,$(TOP_DIR)/src/%/module.mk,$(MODULES))
    79 # EOF

mercurial