xref: /illumos-gate/usr/src/uts/intel/ugen/Makefile (revision e2c88f0c2610f16de7b639746b40dea5f3e2256e)
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 (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21#
22# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# Copyright 2014 Garrett D'Amore <garrett@damore.org>
26
27#
28#	This makefile drives the production of the ugen driver
29#	kernel module. intel architecture dependent
30#
31
32#
33#	Path to the base of the uts directory tree (usually /usr/src/uts).
34#
35UTSBASE	= ../..
36
37#
38#	Define the module and object file sets.
39#
40MODULE		= ugen
41OBJECTS		= $(UGEN_OBJS:%=$(OBJS_DIR)/%)
42LINTS		= $(UGEN_OBJS:%.o=$(LINTS_DIR)/%.ln)
43ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
44WARLOCK_OUT     = $(UGEN_OBJS:%.o=%.ll)
45WARLOCK_OK      = $(MODULE).ok
46WLCMD_DIR	= $(UTSBASE)/common/io/warlock
47
48#
49#	Include common rules.
50#
51include $(UTSBASE)/intel/Makefile.intel
52
53CERRWARN	+= -_gcc=-Wno-uninitialized
54
55#
56#	Define targets
57#
58ALL_TARGET	= $(BINARY)
59LINT_TARGET	= $(MODULE).lint
60INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
61
62#
63# depends on misc/usba misc/scsi
64#
65LDFLAGS		+= -dy -Nmisc/usba
66
67#
68#	Default build targets.
69#
70.KEEP_STATE:
71
72def:		$(DEF_DEPS)
73
74all:		$(ALL_DEPS)
75
76clean:		$(CLEAN_DEPS)
77		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
78
79clobber:	$(CLOBBER_DEPS)
80		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
81
82lint:		$(LINT_DEPS)
83
84modlintlib:	$(MODLINTLIB_DEPS)
85
86clean.lint:	$(CLEAN_LINT_DEPS)
87
88install:	$(INSTALL_DEPS)
89
90#
91#	Include common targets.
92#
93include $(UTSBASE)/intel/Makefile.targ
94
95#
96#	Defines for local commands.
97#
98WARLOCK		= warlock
99WLCC		= wlcc
100TOUCH		= touch
101TEST		= test
102
103#
104#	lock_lint rules
105#
106USBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll)
107UHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll)
108OHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll)
109EHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll)
110
111warlock: $(WARLOCK_OK)  warlock_with_usba
112
113$(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/ugen.wlcmd warlock_ddi.files
114	$(WARLOCK) -c $(WLCMD_DIR)/ugen.wlcmd $(WARLOCK_OUT)  \
115		-l ../warlock/ddi_dki_impl.ll
116	$(TOUCH) $@
117
118%.ll: $(UTSBASE)/common/io/usb/clients/ugen/%.c \
119		$(UTSBASE)/common/sys/usb/clients/ugen/ugend.h
120	$(WLCC)  $(CPPFLAGS) -DDEBUG -o $@ $<
121
122warlock_with_usba: $(WLCMD_DIR)/ugen_with_usba.wlcmd $(WARLOCK_OUT) usba_files \
123	ohci_files ehci_files uhci_files warlock_ddi.files
124	$(WARLOCK) -c $(WLCMD_DIR)/ugen_with_usba.wlcmd \
125		$(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \
126		$(WARLOCK_OUT) \
127	-l ../warlock/ddi_dki_impl.ll
128
129usba_files:
130	@cd ../usba;pwd; $(MAKE) warlock
131
132uhci_files:
133	@cd ../uhci;pwd; $(MAKE) warlock
134
135ohci_files:
136	@cd ../ohci;pwd; $(MAKE) warlock
137
138ehci_files:
139	@cd ../ehci;pwd; $(MAKE) warlock
140
141warlock_ddi.files:
142	cd ../warlock; pwd; $(MAKE) warlock
143