1 #
   2 # Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  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 # Makefile for building auth modules.
  27 
  28 BUILDDIR = ../../../../..
  29 PACKAGE = com.sun.security.auth.module
  30 PRODUCT = sun
  31 
  32 # LIBRARY name changed later below, but it is important to tell Defs some name
  33 #    upfront so that it knows it is building a library.
  34 LIBRARY = jaas  
  35 
  36 # Force name of temp directory (needed due to LIBRARY change below)
  37 LIBRARY_OUTPUT = jaas  
  38 
  39 include $(BUILDDIR)/common/Defs.gmk
  40 
  41 #
  42 # Files to compile.
  43 #
  44 
  45 include FILES_java.gmk
  46 
  47 
  48 ifeq ($(PLATFORM), windows)
  49 
  50 LIBRARY = jaas_nt
  51   include FILES_export_windows.gmk
  52   include FILES_c_windows.gmk
  53 # We need some extra libs for windows 
  54   ifneq ($(LIBRARY),fdlibm)
  55     EXTRA_LIBS += netapi32.lib user32.lib mpr.lib
  56   endif #fdlibm
  57   # code generates errors when compiled at warning level 3 and warnings are fatal
  58 endif # windows
  59 
  60 ifeq ($(PLATFORM), solaris)
  61   LIBRARY = jaas_unix
  62   FILES_m = mapfile-vers
  63   include $(BUILDDIR)/common/Mapfile-vers.gmk
  64   include FILES_export_unix.gmk
  65   include FILES_export_solaris.gmk
  66   include FILES_c_unix.gmk
  67   include FILES_c_solaris.gmk
  68 endif # solaris
  69 
  70 ifeq ($(PLATFORM), linux)
  71   LIBRARY = jaas_unix
  72   include FILES_export_unix.gmk
  73   include FILES_c_unix.gmk
  74 endif # linux 
  75 
  76 #
  77 # Rules.
  78 #
  79 include $(BUILDDIR)/common/Library.gmk
  80 
  81 #
  82 # JVMDI implementation lives in the VM.
  83 #
  84 OTHER_LDLIBS = $(JVMLIB)