~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/freetype/builds/unix/unixddef.mk

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# FreeType 2 configuration rules templates for
 
3
# development under Unix with no configure script (gcc only)
 
4
#
 
5
 
 
6
 
 
7
# Copyright 1996-2000, 2003 by
 
8
# David Turner, Robert Wilhelm, and Werner Lemberg.
 
9
#
 
10
# This file is part of the FreeType project, and may only be used, modified,
 
11
# and distributed under the terms of the FreeType project license,
 
12
# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
 
13
# indicate that you have read the license and understand and accept it
 
14
# fully.
 
15
 
 
16
 
 
17
ifndef TOP_DIR
 
18
  TOP_DIR := .
 
19
endif
 
20
TOP_DIR := $(shell cd $(TOP_DIR); pwd)
 
21
 
 
22
DELETE := rm -f
 
23
SEP    := /
 
24
 
 
25
# we use a special devel ftoption.h
 
26
BUILD_DIR := $(TOP_DIR)/devel
 
27
 
 
28
# do not set the platform to `unix', or libtool will trick you
 
29
PLATFORM := unixdev
 
30
 
 
31
 
 
32
# The directory where all object files are placed.
 
33
#
 
34
ifndef OBJ_DIR
 
35
  OBJ_DIR := $(shell cd $(TOP_DIR)/objs; pwd)
 
36
endif
 
37
 
 
38
 
 
39
# library file name
 
40
#
 
41
LIBRARY := lib$(PROJECT)
 
42
 
 
43
 
 
44
# The directory where all library files are placed.
 
45
#
 
46
# By default, this is the same as $(OBJ_DIR); however, this can be changed
 
47
# to suit particular needs.
 
48
#
 
49
LIB_DIR := $(OBJ_DIR)
 
50
 
 
51
 
 
52
NO_OUTPUT := 2> /dev/null
 
53
 
 
54
 
 
55
# EOF