Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#ident "%Z%%M% %I% %E% SMI"
#
# cmd/pools/poold/Makefile
PROG = poold
OBJS = poold.o
SRCS = $(OBJS:%.o=%.c)
include $(SRC)/cmd/Makefile.cmd
JAVA_SUBDIRS = com/sun/solaris/service/exception \
com/sun/solaris/service/kstat \
com/sun/solaris/service/locality \
com/sun/solaris/service/logging \
com/sun/solaris/service/pools \
com/sun/solaris/service/timer \
com/sun/solaris/domain/pools
SUBDIRS = libjkstat \
libjlgrp \
libjpool \
libjsyslog
all := TARGET = all
install := TARGET = install
clean := TARGET = clean
clobber := TARGET = clobber
lint := TARGET = lint
msg := TARGET = msg
JARFILE = JPool.jar
# JAVA_SUBDIRS and PACKAGEDOCS must be synchronized to ensure
# javadoc documentation is generated for all packages.
PACKAGEDOCS = com.sun.solaris.service.exception \
com.sun.solaris.service.kstat \
com.sun.solaris.service.locality \
com.sun.solaris.service.logging \
com.sun.solaris.service.pools \
com.sun.solaris.service.timer \
com.sun.solaris.domain.pools
DOCDIR = doc
ROOTUSRLIBDRP = $(ROOTLIB)/pool
INCS = -I../common \
-I$(JAVA_ROOT)/include \
-I$(JAVA_ROOT)/include/solaris
LDLIBS += -lpool -L$(JAVA_ROOT)/jre/lib/$(MACH)/client -ljvm
LDFLAGS += -R$(JAVA_ROOT)/jre/lib/$(MACH)/client
LINTFLAGS += -erroff=E_NAME_USED_NOT_DEF2
LINTLIBS += -L$(ROOTLIB) -lpool
CPPFLAGS += $(INCS)
ROOTCMDDIR = $(ROOT)/usr/lib/pool
CLOBBERFILES += $(JARFILE)
#
# Definitions for message catalogue
#
POFILES = $(OBJS:.o=.po)
#
# Definitions for Java installs
#
JFILES = poold.properties $(JARFILE)
ROOTJAVA = $(JFILES:%=$(ROOTUSRLIBDRP)/%)
$(ROOTJAVA) := FILEMODE = 444
$(ROOTJAVA) := OWNER = root
$(ROOTJAVA) := GROUP = bin
all: $(PROG) $(JAVA_SUBDIRS) $(JARFILE) \
.WAIT $(SUBDIRS)
clean : $(JAVA_SUBDIRS) $(SUBDIRS)
-$(RM) $(OBJS) $(POFILES)
lint: $(SUBDIRS)
msg: $(POFILES)
install: $(ROOTCMD) $(JAVA_SUBDIRS) $(JARFILE) \
.WAIT $(SUBDIRS) $(ROOTJAVA)
$(JAVA_SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
if [ "$(TARGET)" != "clean" ] && [ "$(TARGET)" != "clobber" ]; \
then \
if [ ! -f $(JARFILE) ]; \
then \
$(JAR) -cf $(JARFILE) $@/*class; \
else \
$(JAR) -uf $(JARFILE) $@/*class; \
fi \
fi
$(SUBDIRS): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
doc: all
$(JAVADOC) -private -classpath $(JARFILE): -sourcepath . \
-source 1.4 -d $(DOCDIR) $(PACKAGEDOCS)
$(PROG): $(OBJS)
$(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS)
$(POST_PROCESS)
$(ROOTUSRLIBDRP)/%: %
$(INS.file)
FRC:
lint:
$(LINT.c) $(PROG).c $(LINTLIBS)
include $(SRC)/cmd/Makefile.targ