xref: /titanic_41/usr/src/uts/sparc/usbprn/Makefile (revision 45916cd2fec6e79bca5dee0421bd39e3c2910d1e)
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# Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28#	This makefile drives the production of the usbprn kernel driver.
29#
30#	sparc architecture dependent
31#
32# uts/sparc/usbprn/Makefile
33#
34#	Path to the base of the uts directory tree (usually /usr/src/uts).
35#
36UTSBASE	= ../..
37
38#
39#	Define the module and object file sets.
40#
41MODULE		= usbprn
42OBJECTS		= $(USBPRN_OBJS:%=$(OBJS_DIR)/%)
43LINTS		= $(USBPRN_OBJS:%.o=$(LINTS_DIR)/%.ln)
44WARLOCK_OUT	= $(USBPRN_OBJS:%.o=%.ll)
45WARLOCK_OK	= $(MODULE).ok
46ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
47
48#
49#	Include common rules.
50#
51include $(UTSBASE)/sparc/Makefile.sparc
52
53#
54# lint pass one enforcement
55#
56CFLAGS += $(CCVERBOSE)
57
58#
59# depends on misc/usba
60LDFLAGS		+= -dy -Nmisc/usba
61
62#
63#	Define targets
64#
65ALL_TARGET	= $(BINARY)
66LINT_TARGET	= $(MODULE).lint
67INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
68
69.KEEP_STATE:
70
71all:		$(ALL_DEPS)
72
73def:		$(DEF_DEPS)
74
75clean:		$(CLEAN_DEPS); \
76                $(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
77
78clobber:	$(CLOBBER_DEPS); \
79		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
80
81lint:		$(LINT_DEPS)
82
83modlintlib:	$(MODLINTLIB_DEPS)
84
85clean.lint:	$(CLEAN_LINT_DEPS)
86
87install:	$(INSTALL_DEPS)
88
89#
90#	Include common targets.
91#
92include $(UTSBASE)/sparc/Makefile.targ
93
94#
95#	Defines for local commands.
96#
97WARLOCK		= warlock
98WLCC		= wlcc
99TOUCH		= touch
100SCCS		= sccs
101TEST		= test
102
103#
104#	lock_lint rules
105#
106USBPRN_FILES	= $(MODULE).ll
107USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll)
108UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll)
109OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll)
110EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll)
111
112warlock: $(MODULE).ok warlock_with_usba
113
114%.wlcmd:
115	$(TEST) -f $@ || $(SCCS) get $@
116
117usbprn.ok: usbprn.ll usbprn.wlcmd warlock_ddi.files
118	$(WARLOCK) -c usbprn.wlcmd $(USBPRN_FILES)  \
119		-l ../warlock/ddi_dki_impl.ll
120	$(TOUCH) $@
121
122%.ll: $(UTSBASE)/common/io/usb/clients/printer/%.c \
123		$(UTSBASE)/common/sys/usb/clients/printer/usbprn.h
124	$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<
125
126warlock_with_usba: usbprn.wlcmd  $(USBPRN_FILES) usba_files \
127	ohci_files ehci_files uhci_files warlock_ddi.files
128	$(WARLOCK) -c ./usbprn_with_usba.wlcmd \
129		$(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \
130		$(USBPRN_FILES) \
131	-l ../warlock/ddi_dki_impl.ll
132
133usba_files:
134	@cd ../usba;pwd; $(MAKE) warlock
135
136ohci_files:
137	@cd ../ohci;pwd; $(MAKE) warlock
138
139uhci_files:
140	@cd ../uhci;pwd; $(MAKE) warlock
141
142ehci_files:
143	@cd ../ehci;pwd; $(MAKE) warlock
144
145warlock_ddi.files:
146	cd ../warlock; pwd; $(MAKE) warlock
147