tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

rules.mk (1664B)


      1 #
      2 # FreeType 2 Windows FNT/FON driver configuration rules
      3 #
      4 
      5 
      6 # Copyright (C) 1996-2025 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.
     14 
     15 
     16 # Windows driver directory
     17 #
     18 FNT_DIR := $(SRC_DIR)/winfonts
     19 
     20 
     21 FNT_COMPILE := $(CC) $(ANSIFLAGS)                            \
     22                     $I$(subst /,$(COMPILER_SEP),$(FNT_DIR)) \
     23                     $(INCLUDE_FLAGS)                        \
     24                     $(FT_CFLAGS)
     25 
     26 
     27 # Windows driver sources (i.e., C files)
     28 #
     29 FNT_DRV_SRC := $(FNT_DIR)/winfnt.c
     30 
     31 # Windows driver headers
     32 #
     33 FNT_DRV_H := $(FNT_DRV_SRC:%.c=%.h) \
     34             $(FNT_DIR)/fnterrs.h
     35 
     36 
     37 # Windows driver object(s)
     38 #
     39 #   FNT_DRV_OBJ_M is used during `multi' builds
     40 #   FNT_DRV_OBJ_S is used during `single' builds
     41 #
     42 FNT_DRV_OBJ_M := $(FNT_DRV_SRC:$(FNT_DIR)/%.c=$(OBJ_DIR)/%.$O)
     43 FNT_DRV_OBJ_S := $(OBJ_DIR)/winfnt.$O
     44 
     45 # Windows driver source file for single build
     46 #
     47 FNT_DRV_SRC_S := $(FNT_DIR)/winfnt.c
     48 
     49 
     50 # Windows driver - single object
     51 #
     52 $(FNT_DRV_OBJ_S): $(FNT_DRV_SRC_S) $(FNT_DRV_SRC) $(FREETYPE_H) $(FNT_DRV_H)
     53 $(FNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(FNT_DRV_SRC_S))
     54 
     55 
     56 # Windows driver - multiple objects
     57 #
     58 $(OBJ_DIR)/%.$O: $(FNT_DIR)/%.c $(FREETYPE_H) $(FNT_DRV_H)
     59 $(FNT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
     60 
     61 
     62 # update main driver object lists
     63 #
     64 DRV_OBJS_S += $(FNT_DRV_OBJ_S)
     65 DRV_OBJS_M += $(FNT_DRV_OBJ_M)
     66 
     67 
     68 # EOF