Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3918 Serge 1
#
2
# FreeType 2 OS/2 specific definitions
3
#
4
 
5
 
6
# Copyright 1996-2000, 2003, 2005, 2006 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
CAT       := type
18
SEP       := $(strip \ )
19
BUILD_DIR := $(TOP_DIR)/builds/os2
20
PLATFORM  := os2
21
 
22
# The executable file extension (for tools), *with* leading dot.
23
#
24
E := .exe
25
 
26
# The directory where all library files are placed.
27
#
28
# By default, this is the same as $(OBJ_DIR); however, this can be changed
29
# to suit particular needs.
30
#
31
LIB_DIR := $(OBJ_DIR)
32
 
33
# The name of the final library file.  Note that the DOS-specific Makefile
34
# uses a shorter (8.3) name.
35
#
36
LIBRARY := $(PROJECT)
37
 
38
 
39
# The NO_OUTPUT macro is used to ignore the output of commands.
40
#
41
NO_OUTPUT = 2> nul
42
 
43
 
44
# EOF