Makefile revision 5023
6355N/A#
6355N/A# Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
6355N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6355N/A#
6355N/A# This code is free software; you can redistribute it and/or modify it
6355N/A# under the terms of the GNU General Public License version 2 only, as
6355N/A# published by the Free Software Foundation. Oracle designates this
6355N/A# particular file as subject to the "Classpath" exception as provided
6355N/A# by Oracle in the LICENSE file that accompanied this code.
6355N/A#
6355N/A# This code is distributed in the hope that it will be useful, but WITHOUT
6355N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6355N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
6355N/A# version 2 for more details (a copy is included in the LICENSE file that
6355N/A# accompanied this code).
6355N/A#
6355N/A# You should have received a copy of the GNU General Public License version
6355N/A# 2 along with this work; if not, write to the Free Software Foundation,
6355N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6355N/A#
6355N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6355N/A# or visit www.oracle.com if you need additional information or have any
6355N/A# questions.
6355N/A#
6355N/A
6355N/A#
6355N/A# Makefile for building Java Access Bridge
6355N/A#
6355N/A
6355N/ABUILDDIR = ..
6355N/Ainclude $(BUILDDIR)/common/Defs.gmk
6355N/A
6355N/A#
6355N/A#
6355N/Aifndef OPENJDK
6355N/Aifeq ($(PLATFORM), windows)
6355N/Ainclude $(BUILDDIR)/common/Subdirs.gmk
6355N/A
6355N/A#
6355N/A# build for 32 and 64 bit (new api)
6355N/A#
6355N/ASUBDIRS = Jaccess JavaAccessBridge WindowsAccessBridge JAWTAccessBridge AccessBridgeJava Jabswitch
6355N/A#
6355N/A# build for legacy
6355N/A#
6355N/Aifeq ($(ARCH_DATA_MODEL), 32)
6355N/AOTHERSUBDIRS_MAKEFLAGS += ABLEGACY=true
6355N/AOTHERSUBDIRS = JavaAccessBridge WindowsAccessBridge JAWTAccessBridge AccessBridgeJava
6355N/Aendif
6355N/A
6355N/Aifeq ($(ARCH_DATA_MODEL), 32)
6355N/Aall build clean clobber ::
6355N/A $(SUBDIRS-loop)
6355N/A $(OTHERSUBDIRS-loop)
6355N/Aelse
6355N/Aall build clean clobber ::
6355N/A $(SUBDIRS-loop)
6355N/Aendif
6355N/A
6355N/Aclean::
6355N/A $(RM) -r $(CLASSBINDIR) $(CLASSBINDIR)
6355N/A
6355N/Aendif # PLATFORM
6355N/Aendif #OPENJDK
6355N/A
6355N/A