1#************************************************************** 2# 3# Licensed to the Apache Software Foundation (ASF) under one 4# or more contributor license agreements. See the NOTICE file 5# distributed with this work for additional information 6# regarding copyright ownership. The ASF licenses this file 7# to you under the Apache License, Version 2.0 (the 8# "License"); you may not use this file except in compliance 9# with the License. You may obtain a copy of the License at 10# 11# http://www.apache.org/licenses/LICENSE-2.0 12# 13# Unless required by applicable law or agreed to in writing, 14# software distributed under the License is distributed on an 15# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16# KIND, either express or implied. See the License for the 17# specific language governing permissions and limitations 18# under the License. 19# 20#************************************************************** 21 22 23 24$(eval $(call gb_Library_Library,jvmaccess)) 25 26ifeq ($(COMNAME),msci) 27$(eval $(call gb_Library_set_versionmap,jvmaccess,$(SRCDIR)/jvmaccess/util/msvc_win32_intel.map)) 28else ifeq ($(COMNAME),sunpro5) 29$(eval $(call gb_Library_set_versionmap,jvmaccess,$(SRCDIR)/jvmaccess/util/cc5_solaris_sparc.map)) 30else ifeq ($(GUI)$(COM),WNTGCC) 31$(eval $(call gb_Library_set_versionmap,jvmaccess,$(SRCDIR)/jvmaccess/util/mingw.map)) 32else ifeq ($(COMNAME),gcc3) 33$(eval $(call gb_Library_set_versionmap,jvmaccess,$(SRCDIR)/jvmaccess/util/gcc3.map)) 34endif 35 36$(eval $(call gb_Library_set_include,jvmaccess,\ 37 $$(INCLUDE) \ 38 -I$(SRCDIR)/jvmaccess/inc \ 39)) 40 41$(eval $(call gb_Library_add_api,jvmaccess,\ 42 udkapi \ 43)) 44 45$(eval $(call gb_Library_add_defs,jvmaccess,\ 46 -DJVMACCESS_DLLIMPLEMENTATION \ 47)) 48 49$(eval $(call gb_Library_add_linked_libs,jvmaccess,\ 50 cppu \ 51 sal \ 52 salhelper \ 53 stl \ 54 $(gb_STDLIBS) \ 55)) 56 57ifeq ($(OS),WNT) 58$(eval $(call gb_Library_add_linked_libs,jvmaccess,\ 59 advapi32 \ 60)) 61endif 62 63 64$(eval $(call gb_Library_add_exception_objects,jvmaccess,\ 65 jvmaccess/source/classpath \ 66 jvmaccess/source/unovirtualmachine \ 67 jvmaccess/source/virtualmachine \ 68)) 69 70# vim: set noet sw=4 ts=4: 71