< prev index next >

make/sun/net/spi/nameservice/dns/Makefile

Print this page
rev 1564 : 7090158: Networking Libraries don't build with javac -Werror
7125055: ContentHandler.getContent API changed in error
Summary: Minor changes to networking java files to remove warnings
Reviewed-by: chegar, weijun, hawtin, alanb
Contributed-by: kurchi.subhra.hazra@oracle.com, sasha_bu@hotmail.com


  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 # Makefile for building JNDI service provider toolkit
  28 #
  29 
  30 BUILDDIR = ../../../../..

  31 PACKAGE = sun.net.spi.nameservice.dns
  32 PRODUCT = sun
  33 include $(BUILDDIR)/common/Defs.gmk
  34 JARFILE = $(EXTDIR)/dnsns.jar
  35 
  36 #
  37 # Files to compile
  38 #
  39 FILES_java = \
  40         sun/net/spi/nameservice/dns/DNSNameServiceDescriptor.java \
  41         sun/net/spi/nameservice/dns/DNSNameService.java
  42 
  43 #
  44 # Rules
  45 #
  46 CLASSDESTDIR = $(TEMPDIR)/classes
  47 
  48 FILES_class = $(FILES_java:%.java=$(CLASSDESTDIR)/%.class)
  49 
  50 




  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 #
  27 # Makefile for building JNDI service provider toolkit
  28 #
  29 
  30 BUILDDIR = ../../../../..
  31 JAVAC_MAX_WARNINGS = true
  32 PACKAGE = sun.net.spi.nameservice.dns
  33 PRODUCT = sun
  34 include $(BUILDDIR)/common/Defs.gmk
  35 JARFILE = $(EXTDIR)/dnsns.jar
  36 
  37 #
  38 # Files to compile
  39 #
  40 FILES_java = \
  41         sun/net/spi/nameservice/dns/DNSNameServiceDescriptor.java \
  42         sun/net/spi/nameservice/dns/DNSNameService.java
  43 
  44 #
  45 # Rules
  46 #
  47 CLASSDESTDIR = $(TEMPDIR)/classes
  48 
  49 FILES_class = $(FILES_java:%.java=$(CLASSDESTDIR)/%.class)
  50 
  51 


< prev index next >