858f310b80
. In all makefiles `/' is used as the path separator. The conversion to the real path separators is done as late as possible using $(subst ...). . $(HOSTSEP) no longer exists. Now, $(SEP) gives the path separator for the operating system, and the new $(COMPILER_SEP) the path separator for the compiler tools. . $(BUILD) has been renamed to $(BUILD_DIR). In general, all directory variables end with `_DIR'. The variants ending in `_' (like `BASE_' have been removed). The following ChangeLog entries only describe changes which are not related to the redesign. * builds/beos/beos-def.mk (BUILD_DIR): Fix typo. * builds/compiler/watcom.mk (LINK_LIBRARY): Fix linker call to avoid overlong arguments as suggested by J. Ali Harlow <ali@avrc.city.ac.uk>. * builds/dos/dos-wat.mk: New file. * builds/freetype.mk (FREETYPE_H): Include header files from the `devel' subdirectory. * builds/os2/os2-dev.mk, builds/unix/unixddef.mk, builds/unix/unixddef.mk, builds/win32/w32-bccd.mk, builds/win32/w32-dev.mk (BUILD_DIR): Fix path. * builds/unix/configure.ac, builds/unic/configure: Updated. * builds/unix/unix-def.in (DISTCLEAN): Add `freetype2.pc'. * devel/ftoption.h: Updated.
81 lines
2.2 KiB
Makefile
81 lines
2.2 KiB
Makefile
#
|
|
# FreeType 2 bdf driver configuration rules
|
|
#
|
|
|
|
|
|
# Copyright (C) 2001, 2002, 2003 by
|
|
# Francesco Zappa Nardelli
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
# bdf driver directory
|
|
#
|
|
BDF_DIR := $(SRC_DIR)/bdf
|
|
|
|
|
|
BDF_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(BDF_DIR))
|
|
|
|
|
|
# bdf driver sources (i.e., C files)
|
|
#
|
|
BDF_DRV_SRC := $(BDF_DIR)/bdflib.c \
|
|
$(BDF_DIR)/bdfdrivr.c
|
|
|
|
|
|
# bdf driver headers
|
|
#
|
|
BDF_DRV_H := $(BDF_DIR)/bdf.h \
|
|
$(BDF_DIR)/bdfdrivr.h
|
|
|
|
# bdf driver object(s)
|
|
#
|
|
# BDF_DRV_OBJ_M is used during `multi' builds
|
|
# BDF_DRV_OBJ_S is used during `single' builds
|
|
#
|
|
BDF_DRV_OBJ_M := $(BDF_DRV_SRC:$(BDF_DIR)/%.c=$(OBJ_DIR)/%.$O)
|
|
BDF_DRV_OBJ_S := $(OBJ_DIR)/bdf.$O
|
|
|
|
# bdf driver source file for single build
|
|
#
|
|
BDF_DRV_SRC_S := $(BDF_DIR)/bdf.c
|
|
|
|
|
|
# bdf driver - single object
|
|
#
|
|
$(BDF_DRV_OBJ_S): $(BDF_DRV_SRC_S) $(BDF_DRV_SRC) $(FREETYPE_H) $(BDF_DRV_H)
|
|
$(BDF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(BDF_DRV_SRC_S))
|
|
|
|
|
|
# bdf driver - multiple objects
|
|
#
|
|
$(OBJ_DIR)/%.$O: $(BDF_DIR)/%.c $(FREETYPE_H) $(BDF_DRV_H)
|
|
$(BDF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
|
|
|
|
|
|
# update main driver object lists
|
|
#
|
|
DRV_OBJS_S += $(BDF_DRV_OBJ_S)
|
|
DRV_OBJS_M += $(BDF_DRV_OBJ_M)
|
|
|
|
|
|
# EOF
|