4447N/A
4447N/A#
4447N/A# Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
4447N/A#
4447N/A# U.S. Government Rights - Commercial software. Government users are subject
4447N/A# to the Sun Microsystems, Inc. standard license agreement and applicable
4447N/A# provisions of the FAR and its supplements.
4447N/A#
4447N/A#
4447N/A# This distribution may include materials developed by third parties. Sun,
4447N/A# Sun Microsystems, the Sun logo and Solaris are trademarks or registered
4447N/A# trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
4447N/A#
4447N/A#
4447N/A
4447N/A#
4447N/A#
4447N/A# Makefile for sun/agent/modules directory in SMA
4447N/A#
4447N/A# $Log: Makefile,v $
4447N/A# Revision 1.7 2003/09/04 17:53:26 rr144420
4447N/A# 4917378 - remove healthMonitor from makefiles
4447N/A#
4447N/A# Revision 1.6 2003/08/21 14:42:01 rr144420
4447N/A# 4908816 - further makefile changes to install into correct lib
4447N/A#
4447N/A# Revision 1.5 2003/08/12 21:14:38 rr144420
4447N/A# 4895376 - correct Sun copyright statements. Cannot use (c), and must use Copyright Copyright in makefiles
4561N/A#
4447N/A# Revision 1.4 2003/08/04 17:10:57 dporter
4447N/A# 4890836 - build new seaProxy module
4447N/A#
4561N/A# Revision 1.3 2003/07/31 21:34:44 pcarroll
4447N/A# Add seaExtensions to Makefile
4447N/A#
4447N/A# Revision 1.2 2003/07/28 19:27:15 augustus
4454N/A# This is the complete Entity MIB Implementation.
4454N/A#
4454N/A# Revision 1.1 2003/07/23 15:53:32 rr144420
4454N/A# new makefiles for building sun directory
4447N/A#
#
# removed healthMonitor
SUBDIRS = entityMib seaExtensions
all:
@if test "$(SUBDIRS)" != ""; then \
it="$(SUBDIRS)" ; \
for i in $$it ; do \
echo "making all in `pwd`/$$i"; \
echo "SUBDIRS3: $(MAKE) CC=$(CC) DEBUG=$(DEBUG) ARCH=$(ARCH)" ; \
( cd $$i ; $(MAKE) CC=$(CC) DEBUG=$(DEBUG) ARCH=$(ARCH) ROOT=$(ROOT) ) ; \
echo "====> Makeing in dir $$i"; \
if test $$? != 0 ; then \
exit 1 ; \
fi \
done \
fi
install:
@if test "$(SUBDIRS)" != ""; then \
it="$(SUBDIRS)" ; \
for i in $$it ; do \
echo "making install in `pwd`/$$i"; \
( cd $$i ; $(MAKE) install ARCH=$(ARCH) ) ; \
if test $$? != 0 ; then \
exit 1 ; \
fi \
done \
fi