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