Makefile revision 4c529e57a01120d5aa035bcb27587e688c50de0e
221N/A#
221N/A# CDDL HEADER START
221N/A#
221N/A# The contents of this file are subject to the terms of the
221N/A# Common Development and Distribution License (the "License").
221N/A# You may not use this file except in compliance with the License.
221N/A#
221N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
221N/A# or http://www.opensolaris.org/os/licensing.
221N/A# See the License for the specific language governing permissions
221N/A# and limitations under the License.
221N/A#
221N/A# When distributing Covered Code, include this CDDL HEADER in each
221N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
221N/A# If applicable, add the following below this CDDL HEADER, with the
221N/A# fields enclosed by brackets "[]" replaced with your own identifying
221N/A# information: Portions Copyright [yyyy] [name of copyright owner]
221N/A#
221N/A# CDDL HEADER END
221N/A#
3817N/A
221N/A#
221N/A# ident "%Z%%M% %I% %E% SMI"
221N/A#
221N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
2096N/A# Use is subject to license terms.
618N/A#
221N/A# usr/src/cmd/cmd-inet/lib/nwamd/Makefile
2096N/A#
844N/A
2096N/A# Needed for ROOTFS_LIBDIR definition
221N/Ainclude ../../../../lib/Makefile.lib
1289N/A
221N/APROG= nwamd
2899N/AOBJS= events.o interface.o llp.o main.o \
2899N/A state_machine.o util.o wireless.o
2899N/ASRCS= $(OBJS:%.o=%.c)
3817N/AHEADERS= defines.h functions.h structures.h variables.h
3817N/A
3817N/Ainclude ../../../Makefile.cmd
221N/A
679N/APOFILE= $(PROG).po
679N/APOFILES= interface.po wireless.po
679N/A
679N/AROOTCMDDIR= $(ROOTFS_LIBDIR)/inet
679N/A
679N/ALDLIBS += -lsocket -lnsl -linetcfg -linetutil -lumem -lscf -ldladm -lgen
679N/A
679N/A.KEEP_STATE:
221N/A
221N/A.PARALLEL:
679N/A
221N/Aall: $(PROG)
2096N/A
2096N/A$(PROG): $(OBJS)
221N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
3477N/A $(POST_PROCESS)
3477N/A
2096N/Ainstall: $(ROOTCMD)
221N/A
2096N/Acheck: $(SRCS) $(HEADERS)
221N/A $(CSTYLE) -cpP $(SRCS) $(HEADERS)
221N/A
221N/A$(ROOTCMD): all
221N/A
3817N/Aclean:
3817N/A $(RM) $(OBJS)
3817N/A
3817N/Alint: lint_SRCS
3817N/A
3817N/Ainclude ../../../Makefile.targ
3817N/Ainclude ../../Makefile.msg
3817N/A