Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# CDDL HEADER START
371584c2eae4cf827fd406ba26c14f021adaaa70Yuri Pankov# The contents of this file are subject to the terms of the
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# Common Development and Distribution License (the "License").
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# You may not use this file except in compliance with the License.
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# or http://www.opensolaris.org/os/licensing.
371584c2eae4cf827fd406ba26c14f021adaaa70Yuri Pankov# See the License for the specific language governing permissions
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# and limitations under the License.
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# When distributing Covered Code, include this CDDL HEADER in each
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# If applicable, add the following below this CDDL HEADER, with the
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# fields enclosed by brackets "[]" replaced with your own identifying
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# information: Portions Copyright [yyyy] [name of copyright owner]
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# CDDL HEADER END
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# Needed for ROOTFS_LIBDIR definition
260e9a87725c090ba5835b1f9f0b62fa2f96036fYuri PankovOBJS= conditions.o dlpi_events.o door_if.o enm.o\
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore events.o known_wlans.o llp.o loc.o logging.o\
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore main.o ncp.o ncu.o ncu_phys.o ncu_ip.o objects.o\
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'AmoreHEADERS= conditions.h events.h known_wlans.h llp.h ncp.h ncu.h\
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'AmoreROOTCFGFILES= $(LOCFILES:%=$(ROOTLOCDIR)/%) \
260e9a87725c090ba5835b1f9f0b62fa2f96036fYuri PankovLDLIBS += -ldhcpagent -ldhcputil -ldladm -ldlpi -lgen \
371584c2eae4cf827fd406ba26c14f021adaaa70Yuri Pankov -linetutil -lipadm -lkstat -lnsl -lnvpair -lnwam \
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore -lsecdb -lscf -lsocket -lsysevent -lumem -luutil
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore# Instrument with CTF data to ease debugging.
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'AmoreCTFMERGE_HOOK = && $(CTFMERGE) -L VERSION -o $@ $(OBJS)
95c635efb7c3b86efc493e0447eaec7aecca3f0fGarrett D'Amore $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(CTFMERGE_HOOK)