1 | # $Id: Makefile.kmk 69111 2017-10-17 14:26:02Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # Sub-Makefile for liblzf.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2006-2017 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 |
|
---|
19 | SUB_DEPTH = ../../..
|
---|
20 | include $(KBUILD_PATH)/subheader.kmk
|
---|
21 |
|
---|
22 | LIBRARIES += VBox-liblzf
|
---|
23 | if1of ($(KBUILD_TARGET),os2 win)
|
---|
24 | # only required for vbox-img
|
---|
25 | LIBRARIES += VBox-liblzf-static
|
---|
26 | endif
|
---|
27 | VBox-liblzf_TEMPLATE = VBoxR3RuntimeDllNonPedanticFast
|
---|
28 | VBox-liblzf_BLD_TYPE = release # WARNING! Always optimizing this lib.
|
---|
29 | VBox-liblzf_DEFS = ULTRA_FAST=1 HLOG=12
|
---|
30 | VBox-liblzf_DEFS.x86 = STRICT_ALIGN=0
|
---|
31 | VBox-liblzf_DEFS.amd64 = STRICT_ALIGN=0
|
---|
32 | VBox-liblzf_SOURCES = \
|
---|
33 | lzf_c.c \
|
---|
34 | lzf_d.c
|
---|
35 |
|
---|
36 | VBox-liblzf-static_TEMPLATE = VBoxR3StaticNonPedantic
|
---|
37 | VBox-liblzf-static_BLD_TYPE = $(VBox-liblzf_BLD_TYPE)
|
---|
38 | VBox-liblzf-static_DEFS = $(VBox-liblzf_DEFS)
|
---|
39 | VBox-liblzf-static_DEFS.x86 = $(VBox-liblzf_DEFS.x86)
|
---|
40 | VBox-liblzf-static_DEFS.amd64 = $(VBox-liblzf_DEFS.amd64)
|
---|
41 | VBox-liblzf-static_SOURCES = $(VBox-liblzf_SOURCES)
|
---|
42 |
|
---|
43 | ifdef VBOX_WITH_32_ON_64_MAIN_API # 32-bit edition.
|
---|
44 | LIBRARIES += VBox-liblzf-x86
|
---|
45 | VBox-liblzf-x86_TEMPLATE = VBoxR3DllNonPedantic-x86
|
---|
46 | VBox-liblzf-x86_EXTENDS = VBox-liblzf
|
---|
47 | endif
|
---|
48 |
|
---|
49 |
|
---|
50 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|
51 |
|
---|