blob: da163368e2188ec9a9bc4f6e96b6fcae4118758c [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001#
2# Copyright 1999-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#
27# Makefile for Windows HPI DLL
28#
29BUILDDIR = ../../..
30LIBRARY = hpi
31PRODUCT = java
32THREADDIR = windows_threads
33LIB_LOCATION = $(BINDIR)
34
35include $(BUILDDIR)/common/Defs.gmk
36
37# windows compiler flags
38ifeq ($(PLATFORM),windows)
39 CPPFLAGS_DBG += -DLOGGING
40 # Files built here do not compile with warning level 3 if warnings are fatal
41 COMPILER_WARNINGS_FATAL=false
42endif
43
44FILES_c = \
45 linker_md.c \
46 memory_md.c \
47 monitor_md.c \
48 path_md.c \
49 socket_md.c \
50 sys_api_md.c \
51 system_md.c \
52 threads_md.c \
53 hpi.c # trailing blank required!
54
55JVMLIB =
56JAVALIB =
57OTHER_LCF = -export:DLL_Initialize
58EXTRA_LIBS =
59
60
61#
62# Other files/flags shared between the HPIs.
63#
64include $(BUILDDIR)/java/hpi/hpi_common.gmk
65
66#
67# Rules for the .so file.
68#
69include $(BUILDDIR)/common/Library.gmk
70