~ubuntu-branches/ubuntu/saucy/emscripten/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/freetype/builds/link_dos.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
#  Link instructions for Dos-like systems (Dos, Win32, OS/2)
 
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
ifdef BUILD_PROJECT
 
17
 
 
18
  .PHONY: clean_project distclean_project
 
19
 
 
20
  # Now include the main sub-makefile.  It contains all the rules used to
 
21
  # build the library with the previous variables defined.
 
22
  #
 
23
  include $(TOP_DIR)/builds/$(PROJECT).mk
 
24
 
 
25
  # The cleanup targets.
 
26
  #
 
27
  clean_project: clean_project_dos
 
28
  distclean_project: distclean_project_dos
 
29
 
 
30
  # This final rule is used to link all object files into a single library.
 
31
  # this is compiler-specific
 
32
  #
 
33
  $(PROJECT_LIBRARY): $(OBJECTS_LIST)
 
34
    ifdef CLEAN_LIBRARY
 
35
          -$(CLEAN_LIBRARY) $(NO_OUTPUT)
 
36
    endif
 
37
          $(LINK_LIBRARY)
 
38
 
 
39
endif
 
40
 
 
41
 
 
42
# EOF