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 2008 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# This makefile drives the production of the wc driver 27# 28# sparc architecture dependent 29# 30 31# 32# Path to the base of the uts directory tree (usually /usr/src/uts). 33# 34UTSBASE = ../.. 35 36# 37# Define the module and object file sets. 38# 39MODULE = wc 40OBJECTS = $(WC_OBJS:%=$(OBJS_DIR)/%) 41LINTS = $(WC_OBJS:%.o=$(LINTS_DIR)/%.ln) 42ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE) 43CONF_SRCDIR = $(UTSBASE)/sun/io 44WARLOCK_OUT = $(WC_OBJS:%.o=%.ll) 45WARLOCK_OK = $(MODULE).ok 46WLCMD_DIR = $(UTSBASE)/common/io/warlock 47 48# 49# Include common rules. 50# 51include $(UTSBASE)/sparc/Makefile.sparc 52 53# 54# Define targets 55# 56ALL_TARGET = $(BINARY) $(SRC_CONFILE) 57LINT_TARGET = $(MODULE).lint 58INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE) 59 60# 61# Override defaults to build a unique, local modstubs.o. 62# 63MODSTUBS_DIR = $(OBJS_DIR) 64$(MODSTUBS_O) := AS_CPPFLAGS += -DWC_MODULE 65CLEANFILES += $(MODSTUBS_O) 66 67# 68# lint pass one enforcement 69# 70CFLAGS += $(CCVERBOSE) 71LDFLAGS += -dy -Nmisc/tem -Ndacf/consconfig_dacf 72 73# 74# Default build targets. 75# 76.KEEP_STATE: 77 78def: $(DEF_DEPS) 79 80all: $(ALL_DEPS) 81 82clean: $(CLEAN_DEPS) 83 84clobber: $(CLOBBER_DEPS) 85 86lint: $(LINT_DEPS) 87 88modlintlib: $(MODLINTLIB_DEPS) 89 90clean.lint: $(CLEAN_LINT_DEPS) 91 92install: $(INSTALL_DEPS) 93 94# 95# Include common targets. 96# 97include $(UTSBASE)/sparc/Makefile.targ 98 99# 100# Defines for local commands 101# 102TEST = test 103WLCC = wlcc 104TOUCH = touch 105WARLOCK = warlock 106 107# 108# warlock targets 109# 110 111# 112# vcons_conf.c is compiled to genunix, add it to WARLOCK_OUT 113# 114WARLOCK_OUT += vcons_conf.ll 115 116warlock: $(WARLOCK_OUT) sdev_vtops.file warlock_ddi.files 117 $(WARLOCK) -c $(WLCMD_DIR)/wc.wlcmd $(WARLOCK_OUT) \ 118 -l ../../sparc/warlock/ddi_dki_impl.ll 119 $(WARLOCK) -c $(WLCMD_DIR)/wc_devfs.wlcmd sdev_vtops.ll vcons_conf.ll \ 120 -l ../../sparc/warlock/ddi_dki_impl.ll 121 $(TOUCH) $(WARLOCK_OK) 122 123%.ll: $(UTSBASE)/common/io/%.c 124 $(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $< 125 126sdev_vtops.file: 127 $(WLCC) $(CPPFLAGS) -DDEBUG -o sdev_vtops.ll -c \ 128 ../../common/fs/dev/sdev_vtops.c 129 130warlock_ddi.files: 131 @cd ../../sparc/warlock; pwd; $(MAKE) warlock 132