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# 23# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# 27 28# 29# This makefile drives the production of the 30# "platform/i86pc/kernel/drv/si3124" kernel module. 31# 32# intel 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 = si3124 44OBJECTS = $(SI3124_OBJS:%=$(OBJS_DIR)/%) 45LINTS = $(SI3124_OBJS:%.o=$(LINTS_DIR)/%.ln) 46ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 47CONF_SRCDIR = $(UTSBASE)/common/io/sata/adapters/si3124 48WARLOCK_OUT = $(SI3124_OBJS:%.o=%.ll) 49WARLOCK_OK = $(MODULE).ok 50WLCMD_DIR = $(UTSBASE)/common/io/warlock 51 52# 53# Include common rules. 54# 55include $(UTSBASE)/intel/Makefile.intel 56 57# 58# Define targets 59# 60ALL_TARGET = $(BINARY) 61LINT_TARGET = $(MODULE).lint 62INSTALL_TARGET = $(BINARY) $(ROOTMODULE) 63 64# 65# Overrides. 66# 67DEBUG_FLGS = 68DEBUG_DEFS += $(DEBUG_FLGS) 69 70# 71# lint pass one enforcement 72# 73CFLAGS += $(CCVERBOSE) 74 75# 76# 77# we depend on the sata module 78LDFLAGS += -dy -N misc/sata 79 80# 81# Default build targets. 82# 83.KEEP_STATE: 84 85def: $(DEF_DEPS) 86 87all: $(ALL_DEPS) 88 89clean: $(CLEAN_DEPS) 90 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 91 92clobber: $(CLOBBER_DEPS) 93 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 94 95lint: $(LINT_DEPS) 96 97modlintlib: $(MODLINTLIB_DEPS) 98 99clean.lint: $(CLEAN_LINT_DEPS) 100 101install: $(INSTALL_DEPS) 102 103# 104# Include common targets. 105# 106include $(UTSBASE)/intel/Makefile.targ 107 108 109# 110# Defines for local commands. 111# 112WARLOCK = warlock 113WLCC = wlcc 114TOUCH = touch 115TEST = test 116 117SI3124_FILES = $(MODULE).ll 118SD_FILES = $(SD_OBJS:%.o=../sd/%.ll) 119SATA_FILES = $(SATA_OBJS:%.o=-l ../sata/%.ll) 120SCSI_FILES = $(SCSI_OBJS:%.o=-l ../scsi/%.ll) 121CMLB_FILES = $(CMLB_OBJS:%.o=-l ../cmlb/%.ll) 122 123warlock: $(WARLOCK_OK) 124 125$(WARLOCK_OK): $(WLCMD_DIR)/si3124.wlcmd $(WARLOCK_OUT) warlock_ddi.files \ 126 sata.files scsi.files sd.files cmlb.files 127 $(WARLOCK) -c $(WLCMD_DIR)/si3124.wlcmd $(WARLOCK_OUT) \ 128 $(SD_FILES) \ 129 $(SCSI_FILES) \ 130 $(CMLB_FILES) \ 131 $(SATA_FILES) \ 132 -l ../warlock/ddi_dki_impl.ll 133 $(TOUCH) $@ 134 135%.ll: $(UTSBASE)/common/io/sata/adapters/si3124/%.c 136 $(WLCC) $(CPPFLAGS) -D DEBUG -o $@ $< 137 138sata.files: 139 @cd ../sata; pwd; $(MAKE) warlock 140 141scsi.files: 142 @cd ../scsi; pwd; $(MAKE) warlock 143 144sd.files: 145 @cd ../sd; pwd; $(MAKE) warlock_alone 146 147cmlb.files: 148 @cd ../cmlb; pwd; $(MAKE) warlock 149 150warlock_ddi.files: 151 @cd ../warlock; pwd; $(MAKE) warlock 152