[builds] Relocate `FTMODULE_H'.

* builds/toplevel.mk: Place `FTMODULE_H' in include/.
* builds/freetype.mk: Simplify included path.
This commit is contained in:
Alexei Podtelezhnikov 2021-01-07 16:02:32 -05:00
parent cbc14b10e6
commit 576403f22b
3 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2021-01-07 Alexei Podtelezhnikov <apodtele@gmail.com>
[builds] Relocate `FTMODULE_H'.
* builds/toplevel.mk: Place `FTMODULE_H' in include/.
* builds/freetype.mk: Simplify included path.
2021-01-07 Werner Lemberg <wl@gnu.org>
Fix ABI incompatibility.

View File

@ -119,8 +119,7 @@ PROJECT_LIBRARY := $(LIB_DIR)/$(LIBRARY).$A
# in the `builds/<system>' directory, as these files will
# override the default sources.
#
INCLUDES := $(subst /,$(COMPILER_SEP),$(OBJ_DIR) \
$(DEVEL_DIR) \
INCLUDES := $(subst /,$(COMPILER_SEP),$(DEVEL_DIR) \
$(BUILD_DIR) \
$(TOP_DIR)/include)

View File

@ -68,7 +68,7 @@ endif
# FTMODULE_H, as its name suggests, indicates where the FreeType module
# class file resides.
#
FTMODULE_H ?= $(OBJ_DIR)/ftmodule.h
FTMODULE_H ?= $(TOP_DIR)/include/ftmodule.h
include $(MODULES_CFG)