summaryrefslogtreecommitdiff
path: root/usr/src/uts/intel/sdhost
diff options
context:
space:
mode:
authorGarrett D'Amore <gdamore@opensolaris.org>2010-05-17 21:17:01 -0700
committerGarrett D'Amore <gdamore@opensolaris.org>2010-05-17 21:17:01 -0700
commit3f7d54a6b84904c8f4d8daa4c7b577bede7df8b9 (patch)
treee0c3307a1e4eb4e5be19766b151c776c272ce168 /usr/src/uts/intel/sdhost
parentf8705f4706cd6c66b9d99f4ae99901cfeddc5d19 (diff)
downloadillumos-joyent-3f7d54a6b84904c8f4d8daa4c7b577bede7df8b9.tar.gz
PSARC 2009/646 bd - generic block device driver
PSARC 2009/648 sdcard conversion to bd, EOF blk2scsa 6952618 deliver blkdev (PSARC 2009/646)
Diffstat (limited to 'usr/src/uts/intel/sdhost')
-rw-r--r--usr/src/uts/intel/sdhost/Makefile31
1 files changed, 2 insertions, 29 deletions
diff --git a/usr/src/uts/intel/sdhost/Makefile b/usr/src/uts/intel/sdhost/Makefile
index f033b2610c..3bf17f9e1c 100644
--- a/usr/src/uts/intel/sdhost/Makefile
+++ b/usr/src/uts/intel/sdhost/Makefile
@@ -20,8 +20,7 @@
#
#
-# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
-# Use is subject to license terms.
+# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
#
#
@@ -45,9 +44,6 @@ MODULE = sdhost
OBJECTS = $(SDHOST_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(SDHOST_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
-WARLOCK_OUT = $(SDHOST_OBJS:%.o=%.ll)
-WARLOCK_OK = $(MODULE).ok
-WLCMD_DIR = $(UTSBASE)/common/io/warlock
#
# Include common rules.
@@ -73,7 +69,7 @@ DEBUG_DEFS += $(DEBUG_FLGS)
CFLAGS += $(CCVERBOSE)
#
-# dependency on scsi module
+# dependency on sda module
#
LDFLAGS += -dy -Nmisc/sda
@@ -102,26 +98,3 @@ install: $(INSTALL_DEPS)
# Include common targets.
#
include $(UTSBASE)/intel/Makefile.targ
-
-WARLOCK = warlock
-WLCC = wlcc
-TOUCH = touch
-SDA_LLS = $(SDA_OBJS:%.o= -l ../sda/%.ll)
-BLK2SCSA_LLS = $(BLK2SCSA_OBJS:%.o= -l ../blk2scsa/%.ll)
-
-warlock: $(WARLOCK_OK)
-
-blk2scsa.wl:
- @cd ../blk2scsa; pwd; $(MAKE) warlock
-
-sda.wl:
- @cd ../sda; pwd; $(MAKE) warlock
-
-$(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/sdhost.wlcmd blk2scsa.wl sda.wl
- $(WARLOCK) -c $(WLCMD_DIR)/sdhost.wlcmd $(WARLOCK_OUT) \
- $(SDA_LLS) $(BLK2SCSA_LLS) \
- -l ../warlock/ddi_dki_impl.ll
- $(TOUCH) $@
-
-%.ll: $(UTSBASE)/common/io/sdcard/adapters/sdhost/%.c
- $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<