Makefile revision 4639
4639N/A#
4639N/A# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
4639N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4639N/A#
4639N/A# This code is free software; you can redistribute it and/or modify it
4639N/A# under the terms of the GNU General Public License version 2 only, as
4639N/A# published by the Free Software Foundation. Oracle designates this
4639N/A# particular file as subject to the "Classpath" exception as provided
4639N/A# by Oracle in the LICENSE file that accompanied this code.
4639N/A#
4639N/A# This code is distributed in the hope that it will be useful, but WITHOUT
4639N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4639N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4639N/A# version 2 for more details (a copy is included in the LICENSE file that
4639N/A# accompanied this code).
4639N/A#
4639N/A# You should have received a copy of the GNU General Public License version
4639N/A# 2 along with this work; if not, write to the Free Software Foundation,
4639N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4639N/A#
4639N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4639N/A# or visit www.oracle.com if you need additional information or have any
4639N/A# questions.
4639N/A#
4639N/A
4639N/ABUILDDIR = ../..
4639N/ALIBRARY = osxapp
4639N/APRODUCT = sun
4639N/Ainclude $(BUILDDIR)/common/Defs.gmk
4639N/A
4639N/A#
4639N/A# Files
4639N/A#
4639N/AFILES_objc = \
4639N/A NSApplicationAWT.m \
4639N/A QueuingApplicationDelegate.m \
4639N/A PropertiesUtilities.m \
4639N/A ThreadUtilities.m
4639N/A
4639N/A#
4639N/A# Rules.
4639N/A#
4639N/Ainclude $(BUILDDIR)/common/Library.gmk
4639N/A
4639N/A#
4639N/A# Add to the ambient vpath to pick up files in subdirectories
4639N/A#
4639N/Avpath %.m $(call NativeSrcDirList,,native/sun/osxapp)
4639N/A
4639N/A# TODO: perhaps not all of the below frameworks are required
4639N/AOTHER_LDLIBS += \
4639N/A -framework Accelerate \
4639N/A -framework ApplicationServices \
4639N/A -framework AudioToolbox \
4639N/A -framework Carbon \
4639N/A -framework Cocoa \
4639N/A -framework Security \
4639N/A -framework ExceptionHandling \
4639N/A -framework JavaNativeFoundation \
4639N/A -framework JavaRuntimeSupport \
4639N/A -framework OpenGL \
4639N/A -framework IOSurface \
4639N/A -framework QuartzCore
4639N/A
4639N/ACPPFLAGS += \
4639N/A $(call NativeSrcDirList,-I,/native/sun/osxapp)
4639N/A
4639N/A
4639N/Aifeq ($(MILESTONE), internal)
4639N/A CPPFLAGS += -DINTERNAL_BUILD
4639N/Aendif
4639N/A
4639N/Aclean clobber::
4639N/A
4639N/A.PHONY: