~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/freetype/builds/unix/unixddef.mk

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

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, 2006 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
TOP_DIR := $(shell cd $(TOP_DIR); pwd)
 
18
OBJ_DIR := $(shell cd $(OBJ_DIR); pwd)
 
19
 
 
20
PLATFORM := unix
 
21
 
 
22
DELETE := rm -f
 
23
CAT    := cat
 
24
SEP    := /
 
25
 
 
26
# we use a special devel ftoption.h
 
27
DEVEL_DIR := $(TOP_DIR)/devel
 
28
 
 
29
 
 
30
# library file name
 
31
#
 
32
LIBRARY := lib$(PROJECT)
 
33
 
 
34
 
 
35
# The directory where all library files are placed.
 
36
#
 
37
# By default, this is the same as $(OBJ_DIR); however, this can be changed
 
38
# to suit particular needs.
 
39
#
 
40
LIB_DIR := $(OBJ_DIR)
 
41
 
 
42
 
 
43
NO_OUTPUT := 2> /dev/null
 
44
 
 
45
# EOF