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/hci1394/Makefile 24# 25# Copyright 2004 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 hci1394 OHCI HAL 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 = hci1394 44OBJECTS = $(HCI1394_OBJS:%=$(OBJS_DIR)/%) 45LINTS = $(HCI1394_OBJS:%.o=$(LINTS_DIR)/%.ln) 46ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 47CONF_SRCDIR = $(UTSBASE)/common/io/1394/adapters 48LDFLAGS += -dy -Nmisc/s1394 49 50# 51# Include common rules. 52# 53include $(UTSBASE)/sparc/Makefile.sparc 54 55# 56# Define targets 57# 58ALL_TARGET = $(BINARY) $(SRC_CONFILE) 59LINT_TARGET = $(MODULE).lint 60INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 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 88clobber: $(CLOBBER_DEPS) 89 90lint: $(LINT_DEPS) 91 92modlintlib: $(MODLINTLIB_DEPS) lint32 93 94clean.lint: $(CLEAN_LINT_DEPS) 95 96install: $(INSTALL_DEPS) 97 98# 99# Include common targets. 100# 101include $(UTSBASE)/sparc/Makefile.targ 102 103# 104# Defines for local commands. 105# 106WARLOCK = warlock 107WLCC = wlcc 108TOUCH = touch 109SCCS = sccs 110TEST = test 111 112# 113# Warlock targets 114# 115WARLOCK_OBJECTS = $(HCI1394_OBJS:%.o=%.ll) 116S1394_FILES = $(S1394_OBJS:%.o= -l ../s1394/%.ll) 117 118warlock: $(MODULE).ok 119 120%.wlcmd: 121 $(TEST) -f $@ || $(SCCS) get $@ 122 123$(MODULE).ok: $(WARLOCK_OBJECTS) s1394.files warlock_ddi.files hci1394.wlcmd 124 $(WARLOCK) -c hci1394.wlcmd $(WARLOCK_OBJECTS) $(S1394_FILES) \ 125 -l ../warlock/ddi_dki_impl.ll 126 $(TOUCH) $@ 127 128%.ll: $(UTSBASE)/common/io/1394/adapters/%.c 129 $(WLCC) $(CPPFLAGS) -DNPROBE -DDEBUG -o $@ $< 130 131warlock_ddi.files: 132 @cd ../warlock; pwd; $(MAKE) warlock 133 134s1394.files: 135 @cd ../s1394; pwd; $(MAKE) warlock 136 137