Makefile revision 266095ca3ea7169c311dab7af409e34de271db16
849N/A#
661N/A# CDDL HEADER START
661N/A#
661N/A# The contents of this file are subject to the terms of the
661N/A# Common Development and Distribution License, Version 1.0 only
661N/A# (the "License"). You may not use this file except in compliance
661N/A# with the License.
661N/A#
661N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
661N/A# or http://www.opensolaris.org/os/licensing.
661N/A# See the License for the specific language governing permissions
661N/A# and limitations under the License.
661N/A#
661N/A# When distributing Covered Code, include this CDDL HEADER in each
661N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
661N/A# If applicable, add the following below this CDDL HEADER, with the
661N/A# fields enclosed by brackets "[]" replaced with your own identifying
661N/A# information: Portions Copyright [yyyy] [name of copyright owner]
661N/A#
661N/A# CDDL HEADER END
661N/A#
1902N/A#
1902N/A# uts/intel/nfs_dlboot/Makefile
661N/A#
661N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
661N/A# Use is subject to license terms.
661N/A#
661N/A#pragma ident "%Z%%M% %I% %E% SMI"
812N/A#
661N/A# This makefile drives the production of the dlboot_proto
661N/A# kernel module.
661N/A#
661N/A# intel architecture dependent
661N/A#
661N/A
661N/A#
661N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
661N/A#
661N/AUTSBASE = ../..
661N/ACOM_DIR = $(SRC)/common/net/dhcp
661N/A
661N/A#
661N/A# Define the module and object file sets.
661N/A#
661N/AMODULE = nfs_dlboot
661N/AOBJECTS = $(DLBOOT_OBJS:%=$(OBJS_DIR)/%)
661N/ALINTS = $(DLBOOT_OBJS:%.o=$(LINTS_DIR)/%.ln)
661N/AROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
1902N/A
1902N/A#
1902N/A# Include common rules.
1475N/A#
858N/Ainclude $(UTSBASE)/intel/Makefile.intel
1902N/A
1902N/A#
1902N/A# Define targets
661N/A#
661N/AALL_TARGET = $(BINARY)
661N/ALINT_TARGET = $(MODULE).lint
661N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
1518N/A
1518N/A#
1518N/A# Overrides.
1518N/A#
1518N/ACPPFLAGS += -DDHCP_CLIENT -I$(COM_DIR)
1518N/ALDFLAGS += -dy -Nmisc/strplumb -Nstrmod/rpcmod
1518N/A
1518N/A#
1518N/A# Default build targets.
1518N/A#
1518N/A.KEEP_STATE:
1518N/A
1518N/Adef: $(DEF_DEPS)
1518N/A
1518N/Aall: $(ALL_DEPS)
1518N/A
1527N/Aclean: $(CLEAN_DEPS)
1527N/A
1527N/Aclobber: $(CLOBBER_DEPS)
1527N/A
1527N/Alint: $(LINT_DEPS)
1527N/A
1527N/Amodlintlib: $(MODLINTLIB_DEPS)
1527N/A
1527N/Aclean.lint: $(CLEAN_LINT_DEPS)
1527N/A
1527N/Ainstall: $(INSTALL_DEPS)
1527N/A
1518N/A#
1518N/A# Include common targets.
661N/A#
661N/Ainclude $(UTSBASE)/intel/Makefile.targ
661N/A