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 70CERRWARN += -_gcc=-Wno-uninitialized 71 72# 73# lint pass one enforcement 74# 75CFLAGS += $(CCVERBOSE) 76 77# 78# 79# we depend on the sata module 80LDFLAGS += -dy -N misc/sata 81 82# 83# Default build targets. 84# 85.KEEP_STATE: 86 87def: $(DEF_DEPS) 88 89all: $(ALL_DEPS) 90 91clean: $(CLEAN_DEPS) 92 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 93 94clobber: $(CLOBBER_DEPS) 95 $(RM) $(WARLOCK_OUT) $(WARLOCK_OK) 96 97lint: $(LINT_DEPS) 98 99modlintlib: $(MODLINTLIB_DEPS) 100 101clean.lint: $(CLEAN_LINT_DEPS) 102 103install: $(INSTALL_DEPS) 104 105# 106# Include common targets. 107# 108include $(UTSBASE)/intel/Makefile.targ 109 110 111# 112# Defines for local commands. 113# 114WARLOCK = warlock 115WLCC = wlcc 116TOUCH = touch 117TEST = test 118 119SI3124_FILES = $(MODULE).ll 120SD_FILES = $(SD_OBJS:%.o=../sd/%.ll) 121SATA_FILES = $(SATA_OBJS:%.o=-l ../sata/%.ll) 122SCSI_FILES = $(SCSI_OBJS:%.o=-l ../scsi/%.ll) 123CMLB_FILES = $(CMLB_OBJS:%.o=-l ../cmlb/%.ll) 124 125warlock: $(WARLOCK_OK) 126 127$(WARLOCK_OK): $(WLCMD_DIR)/si3124.wlcmd $(WARLOCK_OUT) warlock_ddi.files \ 128 sata.files scsi.files sd.files cmlb.files 129 $(WARLOCK) -c $(WLCMD_DIR)/si3124.wlcmd $(WARLOCK_OUT) \ 130 $(SD_FILES) \ 131 $(SCSI_FILES) \ 132 $(CMLB_FILES) \ 133 $(SATA_FILES) \ 134 -l ../warlock/ddi_dki_impl.ll 135 $(TOUCH) $@ 136 137%.ll: $(UTSBASE)/common/io/sata/adapters/si3124/%.c 138 $(WLCC) $(CPPFLAGS) -D DEBUG -o $@ $< 139 140sata.files: 141 @cd ../sata; pwd; $(MAKE) warlock 142 143scsi.files: 144 @cd ../scsi; pwd; $(MAKE) warlock 145 146sd.files: 147 @cd ../sd; pwd; $(MAKE) warlock_alone 148 149cmlb.files: 150 @cd ../cmlb; pwd; $(MAKE) warlock 151 152warlock_ddi.files: 153 @cd ../warlock; pwd; $(MAKE) warlock 154