Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
342N/A#
1472N/A# CDDL HEADER START
342N/A#
342N/A# The contents of this file are subject to the terms of the
342N/A# Common Development and Distribution License, Version 1.0 only
342N/A# (the "License"). You may not use this file except in compliance
342N/A# with the License.
342N/A#
342N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
342N/A# or http://www.opensolaris.org/os/licensing.
342N/A# See the License for the specific language governing permissions
342N/A# and limitations under the License.
342N/A#
342N/A# When distributing Covered Code, include this CDDL HEADER in each
342N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
342N/A# If applicable, add the following below this CDDL HEADER, with the
342N/A# fields enclosed by brackets "[]" replaced with your own identifying
342N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1472N/A#
1472N/A# CDDL HEADER END
1472N/A#
342N/A#
342N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
342N/A# Use is subject to license terms.
342N/A#
342N/A# uts/intel/usb_ah/Makefile
342N/A#
342N/A# This makefile drives the production of the usb_ah driver
342N/A# kernel module. Intel architecture dependent
342N/A#
342N/A
342N/A#pragma ident "%Z%%M% %I% %E% SMI"
342N/A
342N/A#
342N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
342N/A#
342N/AUTSBASE = ../..
342N/A
342N/A#
342N/A# Define the module and object file sets.
342N/A#
342N/AMODULE = usb_ah
342N/AOBJECTS = $(USB_AH_OBJS:%=$(OBJS_DIR)/%)
342N/ALINTS = $(USB_AH_OBJS:%.o=$(LINTS_DIR)/%.ln)
342N/AROOTMODULE = $(ROOT_STRMOD_DIR)/$(MODULE)
342N/A
342N/A#
342N/A# Include common rules.
342N/A#
342N/Ainclude $(UTSBASE)/intel/Makefile.intel
342N/A
342N/A#
342N/A# Define targets
342N/A#
342N/AALL_TARGET = $(BINARY)
342N/ALINT_TARGET = $(MODULE).lint
342N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
342N/A
342N/A#
342N/A# Override defaults to build a unique, local modstubs.o.
549N/A#
342N/AMODSTUBS_DIR = $(OBJS_DIR)
342N/ACLEANFILES += $(MODSTUBS_O)
342N/A
342N/A#
342N/A# depends on misc/usba
342N/A#
342N/ALDFLAGS += -dy -Nmisc/usba -Nhidparser -Nmisc/audiosup -Nmisc/mixer
342N/A#
342N/A# Default build targets.
342N/A#
342N/A.KEEP_STATE:
342N/A
342N/Adef: $(DEF_DEPS)
342N/A
342N/Aall: $(ALL_DEPS)
342N/A
342N/Aclean: $(CLEAN_DEPS)
342N/A
342N/Aclobber: $(CLOBBER_DEPS)
342N/A
342N/Alint: $(LINT_DEPS)
342N/A
342N/Amodlintlib: $(MODLINTLIB_DEPS)
342N/A
342N/Aclean.lint: $(CLEAN_LINT_DEPS)
342N/A
342N/Ainstall: $(INSTALL_DEPS)
342N/A
342N/A#
342N/A# Include common targets.
342N/A#
342N/Ainclude $(UTSBASE)/intel/Makefile.targ
342N/A
342N/A