Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# CDDL HEADER START
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# The contents of this file are subject to the terms of the
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# Common Development and Distribution License, Version 1.0 only
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# (the "License"). You may not use this file except in compliance
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# with the License.
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# or http://www.opensolaris.org/os/licensing.
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# See the License for the specific language governing permissions
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# and limitations under the License.
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# When distributing Covered Code, include this CDDL HEADER in each
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# If applicable, add the following below this CDDL HEADER, with the
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# fields enclosed by brackets "[]" replaced with your own identifying
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# information: Portions Copyright [yyyy] [name of copyright owner]
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# CDDL HEADER END
9e39c5ba00a55fa05777cc94b148296af305e135Bill Taylor#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# uts/sparc/ecpp/Makefile
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp# Use is subject to license terms.
5a7763bf3e9db4cfe6cb523b096cb74af71e3793jmcp#
a799b1e741b6f59012a469e6b57c40cb8061127bpeihong huang#ident "%Z%%M% %I% %E% SMI"
#
# This Makefile drives the production of ecpp
# kernel module.
#
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../..
#
# Define the module and object file sets.
#
MODULE = ecpp
OBJECTS = $(ECPP_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(ECPP_OBJS:%.o=$(LINTS_DIR)/%.ln)
WARLOCK_OUT = $(ECPP_OBJS:%.o=%.ll)
WARLOCK_OK = $(MODULE).ok
ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
CONF_SRCDIR = $(UTSBASE)/common/io
#
# Include common rules.
#
include $(UTSBASE)/sparc/Makefile.sparc
#
# Define targets
#
ALL_TARGET = $(BINARY) $(SRC_CONFILE)
LINT_TARGET = $(MODULE).lint
INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
#
# lint pass one enforcement
#
CFLAGS += $(CCVERBOSE)
# Turn this on once compiler understands v9 in it's backend
#INLINES += $(UTSBASE)/sun/io/ecpp.il
# Default build targets.
#
.KEEP_STATE:
def: $(DEF_DEPS)
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS) lint64
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sparc/Makefile.targ
#
# Defines for local commands.
#
WARLOCK = warlock
WLCC = wlcc
TOUCH = touch
SCCS = sccs
TEST = test
#
# lock_lint rules
#
ECPP_FILES = $(MODULE).ll
warlock: $(MODULE).ok
%.wlcmd:
$(TEST) -f $@ || $(SCCS) get $@
ecpp.ok: ecpp.ll ecpp.wlcmd warlock_ddi.files
$(WARLOCK) -c ecpp.wlcmd $(ECPP_FILES) \
-l ../warlock/ddi_dki_impl.ll
$(TOUCH) $@
%.ll: $(UTSBASE)/common/io/%.c $(UTSBASE)/common/sys/ecppvar.h \
$(UTSBASE)/common/sys/ecppio.h
$(WLCC) $(CPPFLAGS) -DDEBUG -o $@ $<
warlock_ddi.files:
cd ../warlock; pwd; $(MAKE) warlock