xref: /titanic_50/usr/src/uts/intel/usbsprl/Makefile (revision e2c88f0c2610f16de7b639746b40dea5f3e2256e)
14de26129Sxs156463#
24de26129Sxs156463# CDDL HEADER START
34de26129Sxs156463#
44de26129Sxs156463# The contents of this file are subject to the terms of the
5bb25c06cSjg# Common Development and Distribution License (the "License").
6bb25c06cSjg# You may not use this file except in compliance with the License.
74de26129Sxs156463#
84de26129Sxs156463# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
94de26129Sxs156463# or http://www.opensolaris.org/os/licensing.
104de26129Sxs156463# See the License for the specific language governing permissions
114de26129Sxs156463# and limitations under the License.
124de26129Sxs156463#
134de26129Sxs156463# When distributing Covered Code, include this CDDL HEADER in each
144de26129Sxs156463# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
154de26129Sxs156463# If applicable, add the following below this CDDL HEADER, with the
164de26129Sxs156463# fields enclosed by brackets "[]" replaced with your own identifying
174de26129Sxs156463# information: Portions Copyright [yyyy] [name of copyright owner]
184de26129Sxs156463#
194de26129Sxs156463# CDDL HEADER END
204de26129Sxs156463#
214de26129Sxs156463#
224de26129Sxs156463# uts/intel/usbsprl/Makefile
23489b7c4aSRaymond Chen# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
244de26129Sxs156463# Use is subject to license terms.
254de26129Sxs156463#
26*e2c88f0cSGarrett D'Amore# Copyright 2014 Garrett D'Amore <garrett@damore.org>
274de26129Sxs156463#
284ebb14b2Sfrits#	This makefile drives the production of the Prolific USB Serial
294de26129Sxs156463#	Adapter driver.
304de26129Sxs156463#
314de26129Sxs156463#	Path to the base of the uts directory tree (usually /usr/src/uts).
324de26129Sxs156463#
334de26129Sxs156463UTSBASE	= ../..
344de26129Sxs156463
354de26129Sxs156463#
364de26129Sxs156463#	Define the module and object file sets.
374de26129Sxs156463#
384de26129Sxs156463MODULE		= usbsprl
394de26129Sxs156463OBJECTS		= $(USBSPRL_OBJS:%=$(OBJS_DIR)/%)
404de26129Sxs156463LINTS		= $(USBSPRL_OBJS:%.o=$(LINTS_DIR)/%.ln)
414ebb14b2SfritsWARLOCK_OUT     = $(USBSPRL_OBJS:%.o=%.ll)
424ebb14b2SfritsWARLOCK_OK	= $(MODULE).ok
434de26129Sxs156463ROOTMODULE	= $(ROOT_DRV_DIR)/$(MODULE)
444ebb14b2SfritsWLCMD_DIR	= $(UTSBASE)/common/io/warlock
454de26129Sxs156463
464de26129Sxs156463#
474de26129Sxs156463#	Include common rules.
484de26129Sxs156463#
494de26129Sxs156463include $(UTSBASE)/intel/Makefile.intel
504de26129Sxs156463
517014882cSRichard LoweCERRWARN	+= -_gcc=-Wno-uninitialized
527014882cSRichard Lowe
534de26129Sxs156463LDFLAGS         += -dy -Nmisc/usba -Nmisc/usbser
544de26129Sxs156463
554de26129Sxs156463#
564de26129Sxs156463#	Define targets
574de26129Sxs156463#
584de26129Sxs156463ALL_TARGET	= $(BINARY)
594de26129Sxs156463LINT_TARGET	= $(MODULE).lint
604de26129Sxs156463INSTALL_TARGET	= $(BINARY) $(ROOTMODULE)
614de26129Sxs156463
624de26129Sxs156463.KEEP_STATE:
634de26129Sxs156463
644de26129Sxs156463all:		$(ALL_DEPS)
654de26129Sxs156463
664de26129Sxs156463def:		$(DEF_DEPS)
674de26129Sxs156463
684de26129Sxs156463clean:		$(CLEAN_DEPS)
694ebb14b2Sfrits		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
704de26129Sxs156463
714de26129Sxs156463clobber:	$(CLOBBER_DEPS)
724ebb14b2Sfrits		$(RM) $(WARLOCK_OUT) $(WARLOCK_OK)
734de26129Sxs156463
744de26129Sxs156463lint:		$(LINT_DEPS)
754de26129Sxs156463
764de26129Sxs156463modlintlib:	$(MODLINTLIB_DEPS)
774de26129Sxs156463
784de26129Sxs156463clean.lint:	$(CLEAN_LINT_DEPS)
794de26129Sxs156463
804de26129Sxs156463install:	$(INSTALL_DEPS)
814de26129Sxs156463
824de26129Sxs156463#
834de26129Sxs156463#	Include common targets.
844de26129Sxs156463#
854de26129Sxs156463include $(UTSBASE)/intel/Makefile.targ
864ebb14b2Sfrits
874ebb14b2Sfrits#
884ebb14b2Sfrits#	Defines for local commands.
894ebb14b2Sfrits#
904ebb14b2SfritsWLCC		= wlcc
914ebb14b2SfritsTOUCH		= touch
924ebb14b2SfritsWARLOCK		= warlock
934ebb14b2SfritsTEST		= test
944ebb14b2Sfrits
954ebb14b2Sfrits#
964ebb14b2Sfrits#	warlock
974ebb14b2Sfrits#
98bf56214cSstevelWARLOCK_CMD	= $(WLCMD_DIR)/$(MODULE).wlcmd
994ebb14b2SfritsUSBSER_FILES = $(USBSER_OBJS:%.o=../usbser/%.ll)
100*e2c88f0cSGarrett D'AmoreUSBA_FILES = $(USBA_OBJS:%.o=../usba/%.ll)
1014ebb14b2SfritsUHCI_FILES = $(UHCI_OBJS:%.o=../uhci/%.ll)
1024ebb14b2SfritsOHCI_FILES = $(OHCI_OBJS:%.o=../ohci/%.ll)
1034ebb14b2SfritsEHCI_FILES = $(EHCI_OBJS:%.o=../ehci/%.ll)
1044ebb14b2Sfrits
1054ebb14b2Sfritswarlock: $(WARLOCK_OK)
1064ebb14b2Sfrits
1074ebb14b2Sfrits$(WARLOCK_OK): warlock_with_usba warlock_with_usbser
1084ebb14b2Sfrits	$(TOUCH) $@
1094ebb14b2Sfrits
1104ebb14b2Sfrits%.ll: $(UTSBASE)/common/io/usb/clients/usbser/usbsprl/%.c
1114ebb14b2Sfrits	$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<
1124ebb14b2Sfrits
113bf56214cSstevelwarlock_with_usbser: $(WARLOCK_OUT) usbser_files warlock_ddi.files \
114bf56214cSstevel	$(WARLOCK_CMD)
115bf56214cSstevel	$(WARLOCK) -c $(WARLOCK_CMD) $(WARLOCK_OUT) \
1164ebb14b2Sfrits		$(USBSER_FILES) -l ../warlock/ddi_dki_impl.ll
1174ebb14b2Sfrits
118bf56214cSstevelwarlock_with_usba:  $(WARLOCK_OUT) usbser_files \
119bf56214cSstevel	$(WLCMD_DIR)/usbsprl_with_usba.wlcmd usba_files ohci_files uhci_files \
120bf56214cSstevel	ehci_files warlock_ddi.files
1214ebb14b2Sfrits	$(WARLOCK) -c $(WLCMD_DIR)/usbsprl_with_usba.wlcmd \
1224ebb14b2Sfrits		$(USBA_FILES) $(OHCI_FILES) $(EHCI_FILES) $(UHCI_FILES) \
1234ebb14b2Sfrits		$(USBSER_FILES) \
1244ebb14b2Sfrits		$(WARLOCK_OUT) -l ../warlock/ddi_dki_impl.ll
1254ebb14b2Sfrits
1264ebb14b2Sfritsusbser_files:
1274ebb14b2Sfrits	@cd ../usbser; pwd; $(MAKE) warlock
1284ebb14b2Sfrits
1294ebb14b2Sfritsusba_files:
1304ebb14b2Sfrits	@cd ../usba;pwd; $(MAKE) warlock
1314ebb14b2Sfrits
1324ebb14b2Sfritsuhci_files:
1334ebb14b2Sfrits	@cd ../uhci;pwd; $(MAKE) warlock
1344ebb14b2Sfrits
1354ebb14b2Sfritsohci_files:
1364ebb14b2Sfrits	@cd ../ohci;pwd; $(MAKE) warlock
1374ebb14b2Sfrits
1384ebb14b2Sfritsehci_files:
1394ebb14b2Sfrits	@cd ../ehci;pwd; $(MAKE) warlock
1404ebb14b2Sfrits
1414ebb14b2Sfritswarlock_ddi.files:
1424ebb14b2Sfrits	cd ../warlock; pwd; $(MAKE) warlock
143