1 # 2 # Copyright (c) 2000, 2005, 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 ifeq ($(ARCH_DATA_MODEL), 64) 59 COMPILER_WARNINGS_FATAL=false 60 endif # ARCH_DATA_MODEL 61 endif # windows 62 63 ifeq ($(PLATFORM), solaris) 64 LIBRARY = jaas_unix 65 FILES_m = mapfile-vers 66 include $(BUILDDIR)/common/Mapfile-vers.gmk 67 include FILES_export_unix.gmk 68 include FILES_export_solaris.gmk 69 include FILES_c_unix.gmk 70 include FILES_c_solaris.gmk 71 endif # solaris 72 73 ifeq ($(PLATFORM), linux) 74 LIBRARY = jaas_unix 75 include FILES_export_unix.gmk 76 include FILES_c_unix.gmk 77 endif # linux 78 79 # 80 # Rules. 81 # 82 include $(BUILDDIR)/common/Library.gmk 83 84 # 85 # JVMDI implementation lives in the VM. 86 # 87 OTHER_LDLIBS = $(JVMLIB)