blob: 303c84751630bf649f2aa36dc1f58b7f8497410d [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
2# Copyright 2000-2005 Sun Microsystems, Inc. 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. Sun designates this
8# particular file as subject to the "Classpath" exception as provided
9# by Sun 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22# CA 95054 USA or visit www.sun.com if you need additional information or
23# have any questions.
24#
25
26# Makefile for building auth modules.
27
28BUILDDIR = ../../../../..
29PACKAGE = com.sun.security.auth.module
30PRODUCT = 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.
34LIBRARY = jaas
35
36# Force name of temp directory (needed due to LIBRARY change below)
37LIBRARY_OUTPUT = jaas
38
39include $(BUILDDIR)/common/Defs.gmk
40
41#
42# Files to compile.
43#
44
45include FILES_java.gmk
46
47
48ifeq ($(PLATFORM), windows)
49
50LIBRARY = 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
61endif # windows
62
63ifeq ($(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
71endif # solaris
72
73ifeq ($(PLATFORM), linux)
74 LIBRARY = jaas_unix
75 include FILES_export_unix.gmk
76 include FILES_c_unix.gmk
77endif # linux
78
79#
80# Rules.
81#
82include $(BUILDDIR)/common/Library.gmk
83
84#
85# JVMDI implementation lives in the VM.
86#
87OTHER_LDLIBS = $(JVMLIB)