Makefile revision 3909
427N/A#
427N/A# Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
427N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
427N/A#
427N/A# This code is free software; you can redistribute it and/or modify it
427N/A# under the terms of the GNU General Public License version 2 only, as
427N/A# published by the Free Software Foundation. Oracle designates this
427N/A# particular file as subject to the "Classpath" exception as provided
427N/A# by Oracle in the LICENSE file that accompanied this code.
427N/A#
427N/A# This code is distributed in the hope that it will be useful, but WITHOUT
427N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
427N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
427N/A# version 2 for more details (a copy is included in the LICENSE file that
427N/A# accompanied this code).
427N/A#
427N/A# You should have received a copy of the GNU General Public License version
427N/A# 2 along with this work; if not, write to the Free Software Foundation,
427N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
427N/A#
427N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
427N/A# or visit www.oracle.com if you need additional information or have any
427N/A# questions.
427N/A#
427N/A
427N/A#
427N/A# Makefile for building rmiregistry program
427N/A#
427N/A
618N/ABUILDDIR = ../../..
427N/A# java-rmi.cgi is a JDK tool
427N/APACKAGE = sun.rmi
427N/APRODUCT = sun
618N/APROGRAM = java-rmi
427N/Ainclude $(BUILDDIR)/common/Defs.gmk
427N/A
427N/A#
427N/A# Files to compile.
427N/A#
427N/AFILES_c = java-rmi.c
427N/A
427N/A#
427N/A# Rules.
427N/A#
427N/Ainclude $(BUILDDIR)/common/Program.gmk
427N/A
427N/Abuild: $(BINDIR)/$(PROGRAM).cgi
427N/A
427N/A#
427N/A# Rename .exe to .cgi.
427N/A#
427N/A
427N/A$(BINDIR)/$(PROGRAM).cgi: $(BINDIR)/$(PROGRAM).exe
427N/A $(install-file)
427N/A
427N/Aclean clobber::
427N/A $(RM) $(BINDIR)/$(PROGRAM).cgi
427N/A
427N/A