diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-12 10:48:40 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-12 11:42:50 +0100 |
commit | d2097ad456b4626dd6972e015489ce3d22eb1872 (patch) | |
tree | 41a9b1ca1551795888cfcae15f606d502a6806e7 /stoc/Library_javavm.mk | |
parent | f24ccecbeef52ecb822f1bd111ffe573ec41c142 (diff) |
gbuildize stoc
Diffstat (limited to 'stoc/Library_javavm.mk')
-rw-r--r-- | stoc/Library_javavm.mk | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/stoc/Library_javavm.mk b/stoc/Library_javavm.mk new file mode 100644 index 000000000000..c28e10de8ea9 --- /dev/null +++ b/stoc/Library_javavm.mk @@ -0,0 +1,69 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# Version: MPL 1.1 / GPLv3+ / LGPLv3+ +# +# The contents of this file are subject to the Mozilla Public License Version +# 1.1 (the "License"); you may not use this file except in compliance with +# the License or as specified alternatively below. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" basis, +# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +# for the specific language governing rights and limitations under the +# License. +# +# Major Contributor(s): +# Copyright (C) 2012 Red Hat, Inc., David Tardon <dtardon@redhat.com> +# (initial developer) +# +# All Rights Reserved. +# +# For minor contributions see the git repository. +# +# Alternatively, the contents of this file may be used under the terms of +# either the GNU General Public License Version 3 or later (the "GPLv3+"), or +# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), +# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable +# instead of those above. + +$(eval $(call gb_Library_Library,javavm)) + +ifneq ($(debug),) + +ifeq ($(COM),MSC) +$(eval $(call gb_Library_add_defs,javavm,\ + -0b0 \ +)) +endif + +endif + +$(eval $(call gb_Library_add_internal_api,javavm,\ + jen \ +)) + +$(eval $(call gb_Library_add_linked_libs,javavm,\ + cppu \ + cppuhelper \ + jvmaccess \ + jvmfwk \ + sal \ + salhelper \ +)) + +ifeq ($(GUI),WNT) + +$(eval $(call gb_Library_add_linked_libs,javavm,\ + advapi32 \ +)) + +endif + +$(eval $(call gb_Library_set_componentfile,javavm,stoc/source/javavm/javavm)) + +$(eval $(call gb_Library_add_exception_objects,javavm,\ + stoc/source/javavm/interact \ + stoc/source/javavm/javavm \ + stoc/source/javavm/jvmargs \ +)) + +# vim:set shiftwidth=4 softtabstop=4 expandtab: |