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 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 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 49WARLOCK_OUT = $(HCI1394_OBJS:%.o=%.ll) 50WARLOCK_OK = $(MODULE).ok 51 52# 53# Include common rules. 54# 55include $(UTSBASE)/sparc/Makefile.sparc 56 57# 58# Define targets 59# 60ALL_TARGET = $(BINARY) $(SRC_CONFILE) 61LINT_TARGET = $(MODULE).lint 62INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 63 64# 65# Overrides 66# 67ALL_BUILDS = $(ALL_BUILDSONLY64) 68DEF_BUILDS = $(DEF_BUILDSONLY64) 69CLEANLINTFILES += $(LINT32_FILES) 70 71DEBUG_DEFS_DBG32 += -DTNF_DEBUG 72DEBUG_DEFS_DBG64 += -DTNF_DEBUG 73 74# 75# lint pass one enforcement 76# 77CFLAGS += $(CCVERBOSE) 78 79# 80# Default build targets. 81# 82.KEEP_STATE: 83 84def: $(DEF_DEPS) 85 86all: $(ALL_DEPS) 87 88clean: $(CLEAN_DEPS); \ 89 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 90 91clobber: $(CLOBBER_DEPS); \ 92 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 93 94lint: $(LINT_DEPS) 95 96modlintlib: $(MODLINTLIB_DEPS) lint32 97 98clean.lint: $(CLEAN_LINT_DEPS) 99 100install: $(INSTALL_DEPS) 101 102# 103# Include common targets. 104# 105include $(UTSBASE)/sparc/Makefile.targ 106 107# 108# Defines for local commands. 109# 110WARLOCK = warlock 111WLCC = wlcc 112TOUCH = touch 113SCCS = sccs 114TEST = test 115 116# 117# Warlock targets 118# 119WARLOCK_OBJECTS = $(HCI1394_OBJS:%.o=%.ll) 120S1394_FILES = $(S1394_OBJS:%.o= -l ../s1394/%.ll) 121 122warlock: $(MODULE).ok 123 124%.wlcmd: 125 $(TEST) -f $@ || $(SCCS) get $@ 126 127$(MODULE).ok: $(WARLOCK_OBJECTS) s1394.files warlock_ddi.files hci1394.wlcmd 128 $(WARLOCK) -c hci1394.wlcmd $(WARLOCK_OBJECTS) $(S1394_FILES) \ 129 -l ../warlock/ddi_dki_impl.ll 130 $(TOUCH) $@ 131 132%.ll: $(UTSBASE)/common/io/1394/adapters/%.c 133 $(WLCC) $(CPPFLAGS) -DNPROBE -DDEBUG -o $@ $< 134 135warlock_ddi.files: 136 @cd ../warlock; pwd; $(MAKE) warlock 137 138s1394.files: 139 @cd ../s1394; pwd; $(MAKE) warlock 140 141