author | jjh |
Fri, 09 Dec 2011 12:56:22 -0800 | |
changeset 11277 | e3a1c90dd439 |
parent 9035 | 1255eb81cc2f |
child 12427 | 116544b5a04c |
permissions | -rw-r--r-- |
2 | 1 |
# |
9035
1255eb81cc2f
7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents:
8583
diff
changeset
|
2 |
# Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved. |
2 | 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 |
|
5506 | 7 |
# published by the Free Software Foundation. Oracle designates this |
2 | 8 |
# particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
# by Oracle in the LICENSE file that accompanied this code. |
2 | 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 |
# |
|
5506 | 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. |
|
2 | 24 |
# |
25 |
||
26 |
BUILDDIR = ../.. |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
1247
diff
changeset
|
27 |
|
2 | 28 |
LIBRARY = java_crw_demo |
29 |
PRODUCT = sun |
|
30 |
LIBRARY_OUTPUT = java_crw_demo |
|
31 |
||
32 |
# Configure the CFLAGS for this library. |
|
33 |
||
34 |
include $(BUILDDIR)/common/Defs.gmk |
|
35 |
||
36 |
SRCDIR=$(SHARE_SRC)/demo/jvmti/java_crw_demo |
|
37 |
||
38 |
# Use the mapfile-vers (See the mapfile located with this Makefile) |
|
39 |
FILES_m = mapfile-vers |
|
40 |
ifdef FILES_m |
|
41 |
include $(BUILDDIR)/common/Mapfile-vers.gmk |
|
42 |
endif |
|
43 |
||
44 |
# |
|
45 |
# Files to compile. |
|
46 |
# |
|
47 |
FILES_c = java_crw_demo.c |
|
48 |
||
49 |
OTHER_INCLUDES = -I$(SRCDIR) |
|
50 |
||
51 |
# |
|
52 |
# Library to compile. |
|
53 |
# |
|
54 |
include $(BUILDDIR)/common/Library.gmk |
|
55 |
||
56 |
# We don't want to link against -ljava |
|
57 |
JAVALIB= |
|
58 |
||
59 |
# |
|
60 |
# Add to ambient vpath so we pick up the library files |
|
61 |
# |
|
62 |
vpath %.c $(SRCDIR) |
|
63 |