Makefile revision 7c2fbfb345896881c631598ee3852ce9ce33fb07
98N/A#
98N/A# CDDL HEADER START
98N/A#
98N/A# The contents of this file are subject to the terms of the
1088N/A# Common Development and Distribution License (the "License").
98N/A# You may not use this file except in compliance with the License.
98N/A#
919N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
919N/A# or http://www.opensolaris.org/os/licensing.
919N/A# See the License for the specific language governing permissions
919N/A# and limitations under the License.
919N/A#
919N/A# When distributing Covered Code, include this CDDL HEADER in each
919N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
919N/A# If applicable, add the following below this CDDL HEADER, with the
919N/A# fields enclosed by brackets "[]" replaced with your own identifying
919N/A# information: Portions Copyright [yyyy] [name of copyright owner]
919N/A#
919N/A# CDDL HEADER END
919N/A#
919N/A
919N/A#
919N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
919N/A# Use is subject to license terms.
98N/A#
98N/A
98N/A# This makefile drives the production of the shbinexec (shell binary (ksh93))
98N/A# exec kernel module.
98N/A#
98N/A# intel architecture dependent
493N/A#
493N/A
98N/A#
911N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
1179N/A#
1179N/AUTSBASE = ../..
1179N/A
911N/A#
98N/A# Define the module and object file sets.
235N/A#
493N/AMODULE = shbinexec
98N/AOBJECTS = $(SHBINEXEC_OBJS:%=$(OBJS_DIR)/%)
916N/ALINTS = $(SHBINEXEC_OBJS:%.o=$(LINTS_DIR)/%.ln)
916N/AROOTMODULE = $(USR_EXEC_DIR)/$(MODULE)
916N/A
916N/A#
970N/A# Include common rules.
970N/A#
970N/Ainclude $(UTSBASE)/intel/Makefile.intel
970N/A
970N/A#
970N/A# Define targets
970N/A#
970N/AALL_TARGET = $(BINARY)
970N/ALINT_TARGET = $(MODULE).lint
970N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
970N/A
970N/A#
970N/A# Default build targets.
970N/A#
970N/A.KEEP_STATE:
970N/A
970N/Adef: $(DEF_DEPS)
970N/A
970N/Aall: $(ALL_DEPS)
970N/A
970N/Aclean: $(CLEAN_DEPS)
970N/A
970N/Aclobber: $(CLOBBER_DEPS)
970N/A
970N/Alint: $(LINT_DEPS)
1029N/A
1029N/Amodlintlib: $(MODLINTLIB_DEPS)
1124N/A
1124N/Aclean.lint: $(CLEAN_LINT_DEPS)
1124N/A
1124N/Ainstall: $(INSTALL_DEPS)
1124N/A
1124N/A#
970N/A# Include common targets.
98N/A#
98N/Ainclude $(UTSBASE)/intel/Makefile.targ
1124N/A