xref: /illumos-gate/usr/src/uts/intel/usbs49_fw/Makefile (revision fef1e07ef354c2dcda4dc397c33f5a5532432c7a)
1c138f478Syz147069# CDDL HEADER START
2c138f478Syz147069#
3c138f478Syz147069# The contents of this file are subject to the terms of the
4*fef1e07eSsl147100# Common Development and Distribution License (the "License").
5*fef1e07eSsl147100# You may not use this file except in compliance with the License.
6c138f478Syz147069#
7c138f478Syz147069# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8c138f478Syz147069# or http://www.opensolaris.org/os/licensing.
9c138f478Syz147069# See the License for the specific language governing permissions
10c138f478Syz147069# and limitations under the License.
11c138f478Syz147069#
12c138f478Syz147069# When distributing Covered Code, include this CDDL HEADER in each
13c138f478Syz147069# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14c138f478Syz147069# If applicable, add the following below this CDDL HEADER, with the
15c138f478Syz147069# fields enclosed by brackets "[]" replaced with your own identifying
16c138f478Syz147069# information: Portions Copyright [yyyy] [name of copyright owner]
17c138f478Syz147069#
18c138f478Syz147069# CDDL HEADER END
19c138f478Syz147069#
20*fef1e07eSsl147100# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
21c138f478Syz147069# Use is subject to license terms.
22c138f478Syz147069#
23c138f478Syz147069#ident	"%Z%%M%	%I%	%E% SMI"
24c138f478Syz147069#
25c138f478Syz147069# uts/intel/usbs49_fw/Makefile
26c138f478Syz147069#
27c138f478Syz147069#	Path to the base of the uts directory tree (usually /usr/src/uts).
28c138f478Syz147069#
29c138f478Syz147069UTSBASE	= ../..
30c138f478Syz147069
31c138f478Syz147069#
32c138f478Syz147069#	Define the module and object file sets.
33c138f478Syz147069#
34c138f478Syz147069MODULE		= usbs49_fw
35c138f478Syz147069OBJECTS		= $(USBS49_FW_OBJS:%=$(OBJS_DIR)/%)
36c138f478Syz147069LINTS		= $(USBS49_FW_OBJS:%.o=$(LINTS_DIR)/%.ln)
37c138f478Syz147069ROOTMODULE	= $(ROOT_MISC_DIR)/$(MODULE)
38c138f478Syz147069
39c138f478Syz147069#
40c138f478Syz147069#	Include common rules.
41c138f478Syz147069#
42c138f478Syz147069include $(UTSBASE)/intel/Makefile.intel
43c138f478Syz147069
44c138f478Syz147069#
45c138f478Syz147069#	Define targets
46c138f478Syz147069#
47c138f478Syz147069ALL_TARGET	= $(BINARY)
48c138f478Syz147069LINT_TARGET	= $(MODULE).lint
49c138f478Syz147069INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
50c138f478Syz147069
51c138f478Syz147069#
52c138f478Syz147069#	Default build targets.
53c138f478Syz147069#
54c138f478Syz147069.KEEP_STATE:
55c138f478Syz147069
56c138f478Syz147069def:		$(DEF_DEPS)
57c138f478Syz147069
58c138f478Syz147069all:		$(ALL_DEPS)
59c138f478Syz147069
60c138f478Syz147069clean:		$(CLEAN_DEPS)
61c138f478Syz147069
62c138f478Syz147069clobber:	$(CLOBBER_DEPS)
63c138f478Syz147069
64c138f478Syz147069lint:		$(LINT_DEPS)
65c138f478Syz147069
66c138f478Syz147069modlintlib:	$(MODLINTLIB_DEPS)
67c138f478Syz147069
68c138f478Syz147069clean.lint:	$(CLEAN_LINT_DEPS)
69c138f478Syz147069
70c138f478Syz147069install:	$(INSTALL_DEPS)
71c138f478Syz147069
72c138f478Syz147069#
73c138f478Syz147069#	Include common targets.
74c138f478Syz147069#
75c138f478Syz147069include $(UTSBASE)/intel/Makefile.targ
76