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