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 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25#ident "%Z%%M% %I% %E% SMI" 26# 27 28# 29# Path to the base of the uts directory tree. 30# 31UTSBASE = ../.. 32 33# 34# Define the module and object file sets. 35# 36MODULE = scsa1394 37OBJECTS = $(SCSA1394_OBJS:%=$(OBJS_DIR)/%) 38LINTS = $(SCSA1394_OBJS:%.o=$(LINTS_DIR)/%.ln) 39ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 40WARLOCK_OUT = $(SCSA1394_OBJS:%.o=%.ll) 41WARLOCK_OK = $(MODULE).ok 42WLCMD_DIR = $(UTSBASE)/common/io/warlock 43 44# 45# Include common rules. 46# 47include $(UTSBASE)/sparc/Makefile.sparc 48 49# 50# Define targets 51# 52ALL_TARGET = $(BINARY) 53LINT_TARGET = $(MODULE).lint 54INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 55 56# 57# Overrides 58# 59ALL_BUILDS = $(ALL_BUILDSONLY64) 60DEF_BUILDS = $(DEF_BUILDSONLY64) 61CLEANLINTFILES += $(LINT32_FILES) 62 63# 64# lint pass one enforcement 65# 66CFLAGS += $(CCVERBOSE) 67 68# 69# For now, disable these lint checks; maintainers should endeavor 70# to investigate and remove these for maximum lint coverage. 71# Please do not carry these forward to new Makefiles. 72# 73LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 74LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 75LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED 76LINTTAGS += -erroff=E_STATIC_UNUSED 77LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW 78LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 79 80# 81# depends on 82# 83LDFLAGS += -dy -Nmisc/scsi -Nmisc/s1394 -Nmisc/sbp2 84 85# Default build targets. 86# 87.KEEP_STATE: 88 89def: $(DEF_DEPS) 90 91all: $(ALL_DEPS) 92 93clean: $(CLEAN_DEPS) 94 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 95 96clobber: $(CLOBBER_DEPS) 97 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 98 99modlintlib: $(MODLINTLIB_DEPS) lint32 100 101lint: $(LINT_DEPS) 102 103clean.lint: $(CLEAN_LINT_DEPS) 104 105install: $(INSTALL_DEPS) 106 107# 108# Include common targets. 109# 110include $(UTSBASE)/sparc/Makefile.targ 111 112# 113# Defines for local commands. 114# 115WARLOCK = warlock 116WLCC = wlcc 117TOUCH = touch 118SCCS = sccs 119TEST = test 120 121# 122# Warlock targets 123# 124SBP2_FILES = $(SBP2_OBJS:%.o= -l ../sbp2/%.ll) 125SD_FILES = $(SD_OBJS:%.o=../sd/%.ll) 126SCSI_FILES = $(SCSI_OBJS:%.o= -l ../scsi/%.ll) 127 128warlock: $(WARLOCK_OK) 129 130%.wlcmd: 131 cd $(WLCMD_DIR); $(TEST) -f $@ || $(SCCS) get $@ 132 133$(WARLOCK_OK): $(WARLOCK_OUT) sbp2.files warlock_ddi.files scsa1394.wlcmd \ 134 sd.files scsi.files 135 $(WARLOCK) -c $(WLCMD_DIR)/scsa1394.wlcmd $(WARLOCK_OUT) $(SD_FILES) \ 136 $(SCSI_FILES) \ 137 $(SBP2_FILES) \ 138 -l ../warlock/ddi_dki_impl.ll 139 $(TOUCH) $@ 140 141%.ll: $(UTSBASE)/common/io/1394/targets/scsa1394/%.c 142 $(WLCC) $(CPPFLAGS) -DNPROBE -DDEBUG -o $@ $< 143 144sbp2.files: 145 @cd ../sbp2; pwd; $(MAKE) warlock 146 147warlock_ddi.files: 148 @cd ../warlock; pwd; $(MAKE) warlock 149 150sd.files: 151 @cd ../sd; pwd; $(MAKE) warlock_alone 152 153scsi.files: 154 @cd ../scsi; pwd; $(MAKE) warlock 155 156 157