Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
1516N/A#
926N/A# CDDL HEADER START
926N/A#
926N/A# The contents of this file are subject to the terms of the
926N/A# Common Development and Distribution License, Version 1.0 only
926N/A# (the "License"). You may not use this file except in compliance
926N/A# with the License.
926N/A#
926N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
926N/A# or http://www.opensolaris.org/os/licensing.
926N/A# See the License for the specific language governing permissions
926N/A# and limitations under the License.
926N/A#
926N/A# When distributing Covered Code, include this CDDL HEADER in each
926N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
926N/A# If applicable, add the following below this CDDL HEADER, with the
926N/A# fields enclosed by brackets "[]" replaced with your own identifying
926N/A# information: Portions Copyright [yyyy] [name of copyright owner]
926N/A#
926N/A# CDDL HEADER END
926N/A#
926N/A#
926N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
1895N/A# Use is subject to license terms.
926N/A#
926N/A# ident "%Z%%M% %I% %E% SMI"
926N/A#
926N/A# cmd/rpld/Makefile
926N/A#
926N/A
926N/APROG= rpld
926N/A
926N/ACONFILE= rpld.conf
926N/A
926N/AOBJS= rpld.o llcsetup.o debug.o sighandler.o params.o \
2026N/A clientop.o rplin.o rplout.o
996N/A
926N/ALIBOBJS= dl_open.o dl_bind.o dl_snd.o dl_rcv.o dl_addr.o dl_close.o \
2026N/A dl_unbind.o dl_attach.o dl_info.o dl_error.o
996N/A
996N/ALIBDLA= libdla.a
2026N/A
926N/ALIBS= $(LIBDLA) -lsocket
2026N/A
1431N/AARFLAGS= r
1431N/A
1431N/ACLOBBERFILES= $(LIBDLA)
1968N/A
1431N/Ainclude ../Makefile.cmd
1516N/A
1431N/A$(ROOTETC)/$(CONFILE):= FILEMODE = 644
1431N/A$(ROOTETC)/$(CONFILE):= OWNER = root
1431N/A$(ROOTETC)/$(CONFILE):= GROUP = sys
1431N/A
1352N/ACPPFLAGS += -I.
926N/A
2026N/A.KEEP_STATE:
996N/A
996N/Aall: $(PROG)
1431N/A
2026N/A$(PROG): $(OBJS) $(LIBDLA)
2026N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS) $(LIBS)
2073N/A $(POST_PROCESS)
926N/A
926N/A$(LIBDLA): $(LIBOBJS)
926N/A $(AR) $(ARFLAGS) $(LIBDLA) $?
926N/A $(POST_PROCESS_A)
926N/A
926N/Ainstall: all $(ROOTUSRSBINPROG) $(ROOTETC)/$(CONFILE)
926N/A
926N/Aclean:
926N/A $(RM) $(OBJS) $(LIBOBJS)
926N/A
926N/Alint: lint_PROG
926N/A
926N/Ainclude ../Makefile.targ
926N/A