Makefile revision 529b995e822da20b199001ebd08a470813959a3d
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# CDDL HEADER START
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# The contents of this file are subject to the terms of the
e1e1e620f76ef8d3cb2c022269bf846e6e392fbaAllen Rabinovich# Common Development and Distribution License (the "License").
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# You may not use this file except in compliance with the License.
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich#
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# or http://www.opensolaris.org/os/licensing.
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# See the License for the specific language governing permissions
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# and limitations under the License.
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# When distributing Covered Code, include this CDDL HEADER in each
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# If applicable, add the following below this CDDL HEADER, with the
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# fields enclosed by brackets "[]" replaced with your own identifying
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# information: Portions Copyright [yyyy] [name of copyright owner]
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich#
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# CDDL HEADER END
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# Use is subject to license terms.
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich# uts/sparc/usba/Makefile
e459c407a404c834e5f9759744d1a134d820d41bAllen Rabinovich
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich#
21257820ee962f4f2275b39088c43fcfd76f7fdeAllen Rabinovich# This makefile drives the production of the usba kernel module.
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../..
#
# Define the module and object file sets.
#
MODULE = usba
OBJECTS = $(USBA_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(USBA_OBJS:%.o=$(LINTS_DIR)/%.ln)
WARLOCK_OUT = $(USBA_OBJS:%.o=%.ll)
WARLOCK_OK = $(MODULE).ok
ROOTMODULE = $(ROOT_MISC_DIR)/$(MODULE)
#
# Include common rules.
#
include $(UTSBASE)/sparc/Makefile.sparc
#
# lint pass one enforcement
#
CFLAGS += $(CCVERBOSE)
#
# Define targets
#
ALL_TARGET = $(BINARY)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE)
.KEEP_STATE:
all: $(ALL_DEPS)
def: $(DEF_DEPS)
clean: $(CLEAN_DEPS); \
$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
clobber: $(CLOBBER_DEPS); \
$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sparc/Makefile.targ
#
# Defines for local commands.
#
WLCC = wlcc
TOUCH = touch
WARLOCK = warlock
#
# Warlock targets
#
USBA_FILES = $(USBA_OBJS:%.o=%.ll)
warlock: $(MODULE).ok
%.ok: $(USBA_FILES)
$(TOUCH) $@
%.ll: $(UTSBASE)/common/io/usb/usba/%.c
$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<