2 # Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
4 # U.S. Government Rights - Commercial software. Government users are subject
5 # to the Sun Microsystems, Inc. standard license agreement and applicable
6 # provisions of the FAR and its supplements.
8 # Use is subject to license terms.
10 # This distribution may include materials developed by third parties. Sun,
11 # Sun Microsystems, the Sun logo and Solaris are trademarks or registered
12 # trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
18 # Makefile to generate demo_module_9.so
21 # "make" : generate library for 64bit / sparc
22 # "make ARCH=32" : generate library for 32bit / sparc
23 # "make ARCH=32 MACH=x86" : generate library for 32bit / x86
24 # "make clean" : remove *.o , *.so
29 LDFLAGS_64
=-g
-m64
-I.
31 LDFLAGS
=$(LDFLAGS_
$(ARCH
))
35 PROG
= demo_module_9.so
41 $(CC
) $(LDFLAGS
) $(LDLIBS
) -G
-o
$@
$(OBJS
)
43 $(CC
) $(LDFLAGS
) -g
-o
$@
-c
$<