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