Home | History | Annotate | Download | only in pshinter
      1 #
      2 # FreeType 2 PSHinter driver configuration rules
      3 #
      4 
      5 
      6 # Copyright 2001-2018 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 # PSHINTER driver directory
     17 #
     18 PSHINTER_DIR := $(SRC_DIR)/pshinter
     19 
     20 
     21 # compilation flags for the driver
     22 #
     23 PSHINTER_COMPILE := $(CC) $(ANSIFLAGS)                                 \
     24                           $I$(subst /,$(COMPILER_SEP),$(PSHINTER_DIR)) \
     25                           $(INCLUDE_FLAGS)                             \
     26                           $(FT_CFLAGS)
     27 
     28 
     29 # PSHINTER driver sources (i.e., C files)
     30 #
     31 PSHINTER_DRV_SRC := $(PSHINTER_DIR)/pshalgo.c \
     32                     $(PSHINTER_DIR)/pshglob.c \
     33                     $(PSHINTER_DIR)/pshmod.c  \
     34                     $(PSHINTER_DIR)/pshpic.c  \
     35                     $(PSHINTER_DIR)/pshrec.c
     36 
     37 
     38 # PSHINTER driver headers
     39 #
     40 PSHINTER_DRV_H := $(PSHINTER_DRV_SRC:%c=%h) \
     41                   $(PSHINTER_DIR)/pshnterr.h
     42 
     43 
     44 # PSHINTER driver object(s)
     45 #
     46 #   PSHINTER_DRV_OBJ_M is used during `multi' builds.
     47 #   PSHINTER_DRV_OBJ_S is used during `single' builds.
     48 #
     49 PSHINTER_DRV_OBJ_M := $(PSHINTER_DRV_SRC:$(PSHINTER_DIR)/%.c=$(OBJ_DIR)/%.$O)
     50 PSHINTER_DRV_OBJ_S := $(OBJ_DIR)/pshinter.$O
     51 
     52 # PSHINTER driver source file for single build
     53 #
     54 PSHINTER_DRV_SRC_S := $(PSHINTER_DIR)/pshinter.c
     55 
     56 
     57 # PSHINTER driver - single object
     58 #
     59 $(PSHINTER_DRV_OBJ_S): $(PSHINTER_DRV_SRC_S) $(PSHINTER_DRV_SRC) \
     60                        $(FREETYPE_H) $(PSHINTER_DRV_H)
     61 	$(PSHINTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(PSHINTER_DRV_SRC_S))
     62 
     63 
     64 # PSHINTER driver - multiple objects
     65 #
     66 $(OBJ_DIR)/%.$O: $(PSHINTER_DIR)/%.c $(FREETYPE_H) $(PSHINTER_DRV_H)
     67 	$(PSHINTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
     68 
     69 
     70 # update main driver object lists
     71 #
     72 DRV_OBJS_S += $(PSHINTER_DRV_OBJ_S)
     73 DRV_OBJS_M += $(PSHINTER_DRV_OBJ_M)
     74 
     75 
     76 # EOF
     77