update for HEAD-2003091401
[reactos.git] / lib / freetype / builds / dos / dos-def.mk
1 #
2 # FreeType 2 DOS specific definitions
3 #
4
5
6 # Copyright 1996-2000 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 DELETE   := del
17 HOSTSEP  := $(strip \ )
18 BUILD    := $(TOP_DIR)$(SEP)builds$(SEP)dos
19 PLATFORM := dos
20
21 # except for DJGPP/GCC on Dos
22 ifndef SEP
23 SEP      := $(HOSTSEP)
24 endif
25
26
27 # The directory where all object files are placed.
28 #
29 # This lets you build the library in your own directory with something like
30 #
31 #   set TOP_DIR=.../path/to/freetype2/top/dir...
32 #   set OBJ_DIR=.../path/to/obj/dir
33 #   make -f %TOP_DIR%/Makefile setup [options]
34 #   make -f %TOP_DIR%/Makefile
35 #
36 ifndef OBJ_DIR
37   OBJ_DIR := $(TOP_DIR)$(SEP)objs
38 endif
39
40
41 # The directory where all library files are placed.
42 #
43 # By default, this is the same as $(OBJ_DIR); however, this can be changed
44 # to suit particular needs.
45 #
46 LIB_DIR := $(OBJ_DIR)
47
48 # The name of the final library file.  Note that the DOS-specific Makefile
49 # uses a shorter (8.3) name.
50 #
51 LIBRARY := $(PROJECT)
52
53
54 # The NO_OUTPUT macro is used to ignore the output of commands.
55 #
56 NO_OUTPUT = > nul
57
58
59 # EOF