components/net-snmp-57/sun/agent/modules/seaExtensions/Makefile
changeset 5867 445e2cf1c845
parent 252 ee0fb1eabcbf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/net-snmp-57/sun/agent/modules/seaExtensions/Makefile	Fri Dec 11 03:49:26 2015 -0800
@@ -0,0 +1,64 @@
+#
+# Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
+#
+# U.S. Government Rights - Commercial software. Government users are subject
+# to the Sun Microsystems, Inc. standard license agreement and applicable
+# provisions of the FAR and its supplements.
+#
+# This distribution may include materials developed by third parties. Sun,
+# Sun Microsystems, the Sun logo and Solaris are trademarks or registered
+# trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
+#
+#
+
+#
+#
+# Makefile to generate libseaExtensions.so
+# 
+# usage:
+# "make" : generate library for 64bit / sparc
+# "make ARCH=32" : generate library for 32bit / sparc
+# "make ARCH=32 MACH=x86" : generate library for 32bit / x86
+# "make ARCH=amd64" : generate 64bit AMD64 libraries
+# "make clean" : remove *.o , *.so
+#
+
+
+MARCH=$(ARCH)
+LDFLAGS_sparcv9=-m64  -I$(ROOT)$(CFGPREFIX)/include -I.
+LDFLAGS_32=-I$(ROOT)$(CFGPREFIX)/include -I.
+LDFLAGS_amd64=-Kpic -m64 -I$(ROOT)$(CFGPREFIX)/include -I.
+LDFLAGS=$(LDFLAGS_$(MARCH))
+
+CFLAGS_32=-Kpic
+CFLAGS_sparcv9=-Kpic
+CFLAGS_amd64=-Kpic
+CFLAGS=$(CFLAGS_$(MARCH))
+
+LDLIBS_sparcv9= -L/usr/lib/sparcv9 -lrpcsvc
+LDLIBS_32= -lrpcsvc
+LDLIBS_amd64 = -L/usr/lib/amd64 -lrpcsvc
+LDLIBS=$(LDLIBS_$(MARCH))
+
+
+PROG= libseaExtensions.so
+SRCS= sunHostPerf.c sunProcesses.c sunSystem.c seaExtensions.c
+OBJS = $(SRCS:.c=.o)
+
+all:$(PROG)
+$(PROG): $(OBJS)
+	$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) -G -o $@ $(OBJS)
+.c.o:
+	$(CC) $(CFLAGS) $(LDFLAGS) -g  -o $@ -c $<
+
+clean:
+	rm -f *.o *.so
+
+install:
+	if test "$(ARCH)" = "sparcv9" ; then \
+		cp $(PROG) $(ROOT)/$(CFGLIB64); \
+	elif test "$(ARCH)" = "32" ; then \
+		cp $(PROG) $(ROOT)/$(CFGLIB); \
+	elif test "$(ARCH)" = "amd64" ; then \
+		cp $(PROG) $(ROOT)/$(CFGLIB64); \
+	fi