Makefile.kmk revision c8cc094f51df8a2b86a8137eaf65c3a9eb39b858
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# $Id$
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync## @file
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# Sub-Makefile for liblzf.
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync#
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync#
772269936494ffaddd0750ba9e28e805ba81398cvboxsync# Copyright (C) 2006-2012 Oracle Corporation
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync#
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# This file is part of VirtualBox Open Source Edition (OSE), as
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# available from http://www.virtualbox.org. This file is free software;
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# you can redistribute it and/or modify it under the terms of the GNU
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# General Public License (GPL) as published by the Free Software
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# Foundation, in version 2 as it comes in the "COPYING" file of the
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync#
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsyncSUB_DEPTH = ../../..
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsyncinclude $(KBUILD_PATH)/subheader.kmk
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsyncLIBRARIES += VBox-liblzf
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncif1of ($(KBUILD_TARGET),os2 win)
16acf57681289a6f8962cea292a28fd15030f420vboxsync # only required for vbox-img
16acf57681289a6f8962cea292a28fd15030f420vboxsync LIBRARIES += VBox-liblzf-static
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncendif
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsyncVBox-liblzf_TEMPLATE = VBOXR3
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsyncVBox-liblzf_BLD_TYPE = release # WARNING! Always optimizing this lib.
c6a624be5c3a96d80d45367400b1ac1b1a9547f7vboxsyncVBox-liblzf_DEFS = ULTRA_FAST=1 HLOG=12
c6a624be5c3a96d80d45367400b1ac1b1a9547f7vboxsyncVBox-liblzf_DEFS.x86 = STRICT_ALIGN=0
c6a624be5c3a96d80d45367400b1ac1b1a9547f7vboxsyncVBox-liblzf_DEFS.amd64 = STRICT_ALIGN=0
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsyncVBox-liblzf_SOURCES = \
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync lzf_c.c \
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync lzf_d.c
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncVBox-liblzf-static_TEMPLATE = VBOXR3STATIC
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncVBox-liblzf-static_BLD_TYPE = $(VBox-liblzf_BLD_TYPE)
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncVBox-liblzf-static_DEFS = $(VBox-liblzf_DEFS)
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncVBox-liblzf-static_DEFS.x86 = $(VBox-liblzf_DEFS.x86)
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncVBox-liblzf-static_DEFS.amd64 = $(VBox-liblzf_DEFS.amd64)
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsyncVBox-liblzf-static_SOURCES = $(VBox-liblzf_SOURCES)
69a9cf177999fa25fe3dd1fd131b47f76f8059dfvboxsync
772269936494ffaddd0750ba9e28e805ba81398cvboxsyncinclude $(FILE_KBUILD_SUB_FOOTER)
a260560bdbc7bd737d59547882cd5e8d77b80d0avboxsync