Makefile revision 2442
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore#
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore#
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# This code is free software; you can redistribute it and/or modify it
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# under the terms of the GNU General Public License version 2 only, as
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# published by the Free Software Foundation. Oracle designates this
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# particular file as subject to the "Classpath" exception as provided
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# by Oracle in the LICENSE file that accompanied this code.
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore#
cd21e7c548ae2a3b5e522244bf798f2a6b4ba02dGarrett D'Amore# This code is distributed in the hope that it will be useful, but WITHOUT
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# version 2 for more details (a copy is included in the LICENSE file that
b89e420ae1290e425c29db875ec0c0546006eec7Garrett D'Amore# accompanied this code).
a6ae009119d792a981d8b7153f8cb3851fe04ebbRobert Mustacchi#
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# You should have received a copy of the GNU General Public License version
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# 2 along with this work; if not, write to the Free Software Foundation,
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# or visit www.oracle.com if you need additional information or have any
a9478106a12424322498e53cf7cd75bd8a4d6004Yuri Pankov# questions.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweBUILDDIR = ../..
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweMODULE = java2d
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LowePACKAGE = sun.pisces
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LowePRODUCT = sun
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweinclude $(BUILDDIR)/common/Defs.gmk
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# Files
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# Include all Java source files in sun/java2d/pisces
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweAUTO_FILES_JAVA_DIRS = sun/java2d/pisces
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
fa9922c2be34868be01989cef133828185b5c0bcRobert Mustacchi#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe# Rules.
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe#
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweinclude $(BUILDDIR)/common/Classes.gmk
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweSERVICEDIR = $(CLASSBINDIR)/META-INF/services
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard LoweFILES_copy = \
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe $(SERVICEDIR)/sun.java2d.pipe.RenderingEngine
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowebuild: copy-files
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowecopy-files: $(FILES_copy)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweifneq ($(PLATFORM), windows)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe SERVICE_SRC = $(PLATFORM_SRC)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweelse
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe SERVICE_SRC = $(SHARE_SRC)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Loweendif
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe$(SERVICEDIR)/%: $(SERVICE_SRC)/classes/sun/java2d/pisces/META-INF/services/%
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe $(install-file)
c10c16dec587a0662068f6e2991c29ed3a9db943Richard Lowe