2 # FreeType 2 modules sub-Makefile
6 # Copyright 1996-2000, 2003, 2006, 2008 by
7 # David Turner, Robert Wilhelm, and Werner Lemberg.
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
16 # DO NOT INVOKE THIS MAKEFILE DIRECTLY! IT IS MEANT TO BE INCLUDED BY
20 # This file is in charge of handling the generation of the modules list
24 # Build the modules list.
26 $(FTMODULE_H
): $(MODULES_CFG
)
31 ifneq ($(findstring $(PLATFORM
),dos win32 win16 os2
),)
32 OPEN_MODULE
:= @echo
$(space
)
33 CLOSE_MODULE
:= >> $(subst /,$(SEP
),$(FTMODULE_H
))
34 REMOVE_MODULE
:= @
-$(DELETE
) $(subst /,$(SEP
),$(FTMODULE_H
))
36 OPEN_MODULE
:= @echo
"
37 CLOSE_MODULE := " >> $(FTMODULE_H
)
38 REMOVE_MODULE
:= @
-$(DELETE
) $(FTMODULE_H
)
42 define FTMODULE_H_INIT
44 @
-echo Generating modules list in
$(FTMODULE_H
)...
45 $(OPEN_MODULE
)/* This is a generated file.
*/$(CLOSE_MODULE
)
48 # It is no mistake that the final closing parenthesis is on the
49 # next line -- it produces proper newlines during the expansion
52 define FTMODULE_H_CREATE
53 $(foreach COMMAND
,$(FTMODULE_H_COMMANDS
),$($(COMMAND
))
57 define FTMODULE_H_DONE
58 $(OPEN_MODULE
)/* EOF
*/$(CLOSE_MODULE
)
63 # $(OPEN_DRIVER) & $(CLOSE_DRIVER) are used to specify a given font driver
64 # in the `module.mk' rules file.
66 OPEN_DRIVER
:= $(OPEN_MODULE
)FT_USE_MODULE
(
67 CLOSE_DRIVER
:= )$(CLOSE_MODULE
)
69 ECHO_DRIVER
:= @echo
"* module:$(space)
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.
76 -include $(patsubst %,$(TOP_DIR
)/src
/%/module.mk
,$(MODULES
))