This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / lib / freetype / src / psnames / rules.mk
1 #
2 # FreeType 2 PSNames driver configuration rules
3 #
4
5
6 # Copyright 1996-2000, 2001 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 # PSNames driver directory
17 #
18 PSNAMES_DIR  := $(SRC_)psnames
19 PSNAMES_DIR_ := $(PSNAMES_DIR)$(SEP)
20
21
22 # compilation flags for the driver
23 #
24 PSNAMES_COMPILE := $(FT_COMPILE) $I$(PSNAMES_DIR)
25
26
27 # PSNames driver sources (i.e., C files)
28 #
29 PSNAMES_DRV_SRC := $(PSNAMES_DIR_)psmodule.c
30
31
32 # PSNames driver headers
33 #
34 PSNAMES_DRV_H := $(PSNAMES_DRV_SRC:%.c=%.h) \
35                  $(PSNAMES_DIR_)pstables.h  \
36                  $(PSNAMES_DIR_)psnamerr.h
37
38
39 # PSNames driver object(s)
40 #
41 #   PSNAMES_DRV_OBJ_M is used during `multi' builds
42 #   PSNAMES_DRV_OBJ_S is used during `single' builds
43 #
44 PSNAMES_DRV_OBJ_M := $(PSNAMES_DRV_SRC:$(PSNAMES_DIR_)%.c=$(OBJ_)%.$O)
45 PSNAMES_DRV_OBJ_S := $(OBJ_)psnames.$O
46
47 # PSNames driver source file for single build
48 #
49 PSNAMES_DRV_SRC_S := $(PSNAMES_DIR_)psmodule.c
50
51
52 # PSNames driver - single object
53 #
54 $(PSNAMES_DRV_OBJ_S): $(PSNAMES_DRV_SRC_S) $(PSNAMES_DRV_SRC) \
55                       $(FREETYPE_H) $(PSNAMES_DRV_H)
56         $(PSNAMES_COMPILE) $T$@ $(PSNAMES_DRV_SRC_S)
57
58
59 # PSNames driver - multiple objects
60 #
61 $(OBJ_)%.$O: $(PSNAMES_DIR_)%.c $(FREETYPE_H) $(PSNAMES_DRV_H)
62         $(PSNAMES_COMPILE) $T$@ $<
63
64
65 # update main driver object lists
66 #
67 DRV_OBJS_S += $(PSNAMES_DRV_OBJ_S)
68 DRV_OBJS_M += $(PSNAMES_DRV_OBJ_M)
69
70
71 # EOF