Makefile revision 1291
131N/A#
131N/A# Copyright 2006-2007 Sun Microsystems, Inc. All Rights Reserved.
131N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
131N/A#
131N/A# This code is free software; you can redistribute it and/or modify it
131N/A# under the terms of the GNU General Public License version 2 only, as
131N/A# published by the Free Software Foundation. Sun designates this
131N/A# particular file as subject to the "Classpath" exception as provided
131N/A# by Sun in the LICENSE file that accompanied this code.
131N/A#
131N/A# This code is distributed in the hope that it will be useful, but WITHOUT
131N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
131N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
131N/A# version 2 for more details (a copy is included in the LICENSE file that
131N/A# accompanied this code).
131N/A#
131N/A# You should have received a copy of the GNU General Public License version
131N/A# 2 along with this work; if not, write to the Free Software Foundation,
131N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
131N/A#
131N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
131N/A# CA 95054 USA or visit www.sun.com if you need additional information or
131N/A# have any questions.
131N/A#
131N/A
131N/A#
131N/A# Makefile for the EbayServer sample code
131N/A#
131N/A
131N/ABUILDDIR = ../../..
131N/A
131N/APRODUCT = java
131N/A
131N/Ainclude $(BUILDDIR)/common/Defs.gmk
131N/A
131N/ASAMPLE_SRC_DIR = $(CLOSED_SHARE_SRC)/sample/webservices/EbayServer
131N/ASAMPLE_DST_DIR = $(SAMPLEDIR)/webservices/EbayServer
131N/A
131N/ASAMPLE_FILES = \
131N/A $(SAMPLE_DST_DIR)/src/ebay/server/Main.java \
131N/A $(SAMPLE_DST_DIR)/src/ebay/server/Ebay.java \
131N/A $(SAMPLE_DST_DIR)/src/ebay/server/ImageProvider.java \
131N/A $(SAMPLE_DST_DIR)/build.xml \
131N/A $(SAMPLE_DST_DIR)/build.properties \
131N/A $(SAMPLE_DST_DIR)/eBaySvc.wsdl \
131N/A $(SAMPLE_DST_DIR)/manifest.mf \
131N/A $(SAMPLE_DST_DIR)/index.html \
131N/A $(SAMPLE_DST_DIR)/nbproject/project.xml \
181N/A $(SAMPLE_DST_DIR)/nbproject/jdk.xml \
131N/A $(SAMPLE_DST_DIR)/nbproject/netbeans-targets.xml \
181N/A $(SAMPLE_DST_DIR)/nbproject/file-targets.xml \
131N/A $(SAMPLE_DST_DIR)/images/8d_2.jpg \
181N/A $(SAMPLE_DST_DIR)/images/sun_blade_1000_h400px.jpg \
131N/A $(SAMPLE_DST_DIR)/images/Sun_Fire_E20K_Server.jpg \
131N/A
131N/Aall build: $(SAMPLE_FILES)
131N/A
$(SAMPLE_DST_DIR)/%: $(SAMPLE_SRC_DIR)/%
$(install-file)
clean clobber:
$(RM) -r $(SAMPLE_DST_DIR)
.PHONY: all build clean clobber