xref: /titanic_41/usr/src/uts/sparc/s1394/Makefile (revision 749f21d359d8fbd020c974a1a5227316221bfc9c)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# uts/sparc/1394/s1394/Makefile
24#
25# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
26# Use is subject to license terms.
27#
28#ident	"%Z%%M%	%I%	%E% SMI"
29#
30#	This makefile drives the production of the s1394 kernel module.
31#
32#	sparc architecture dependent
33#
34
35#
36#	Path to the base of the uts directory tree (usually /usr/src/uts).
37#
38UTSBASE	= ../..
39
40#
41#	Define the module and object file sets.
42#
43MODULE		= s1394
44OBJECTS		= $(S1394_OBJS:%=$(OBJS_DIR)/%)
45LINTS		= $(S1394_OBJS:%.o=$(LINTS_DIR)/%.ln)
46ROOTMODULE	= $(ROOT_MISC_DIR)/$(MODULE)
47WARLOCK_OUT     = $(S1394_OBJS:%.o=%.ll)
48WARLOCK_OK      = $(MODULE).ok
49
50#
51#	Include common rules.
52#
53include $(UTSBASE)/sparc/Makefile.sparc
54
55#
56#	Define targets
57#
58ALL_TARGET	= $(BINARY)
59LINT_TARGET	= $(MODULE).lint
60INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
61
62#
63#	Overrides
64#
65ALL_BUILDS	= $(ALL_BUILDSONLY64)
66DEF_BUILDS	= $(DEF_BUILDSONLY64)
67CLEANLINTFILES	+= $(LINT32_FILES)
68
69DEBUG_DEFS_DBG32 += -DTNF_DEBUG
70DEBUG_DEFS_DBG64 += -DTNF_DEBUG
71
72#
73# lint pass one enforcement
74#
75CFLAGS += $(CCVERBOSE)
76
77#
78#	Default build targets.
79#
80.KEEP_STATE:
81
82def:		$(DEF_DEPS)
83
84all:		$(ALL_DEPS)
85
86clean:		$(CLEAN_DEPS); \
87		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
88
89clobber:	$(CLOBBER_DEPS); \
90		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
91
92lint:		$(LINT_DEPS)
93
94modlintlib:	$(MODLINTLIB_DEPS) lint32
95
96clean.lint:	$(CLEAN_LINT_DEPS)
97
98install:	$(INSTALL_DEPS)
99
100#
101#	Include common targets.
102#
103include $(UTSBASE)/sparc/Makefile.targ
104
105#
106#	Defines for local commands.
107#
108WLCC		= wlcc
109TOUCH		= touch
110
111#
112#	Warlock targets
113#
114WARLOCK_OBJECTS	= $(S1394_OBJS:%.o=%.ll)
115
116warlock: $(MODULE).ok
117
118$(MODULE).ok: $(WARLOCK_OBJECTS) warlock_ddi.files
119	$(TOUCH) $@
120
121%.ll: $(UTSBASE)/common/io/1394/%.c
122	$(WLCC) $(CPPFLAGS) -DNPROBE -DDEBUG -o $@ $<
123
124warlock_ddi.files:
125	@cd ../warlock; pwd; $(MAKE) warlock
126
127