Makefile revision 4bff34e37def8a90f9194d81bc345c52ba20086a
904N/A#
904N/A# CDDL HEADER START
904N/A#
904N/A# The contents of this file are subject to the terms of the
904N/A# Common Development and Distribution License (the "License").
904N/A# You may not use this file except in compliance with the License.
904N/A#
904N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
904N/A# or http://www.opensolaris.org/os/licensing.
904N/A# See the License for the specific language governing permissions
904N/A# and limitations under the License.
904N/A#
904N/A# When distributing Covered Code, include this CDDL HEADER in each
904N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
904N/A# If applicable, add the following below this CDDL HEADER, with the
904N/A# fields enclosed by brackets "[]" replaced with your own identifying
904N/A# information: Portions Copyright [yyyy] [name of copyright owner]
904N/A#
904N/A# CDDL HEADER END
904N/A#
4171N/A#
904N/A# uts/sparc/smbfs/Makefile
904N/A#
904N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
904N/A# Use is subject to license terms.
904N/A#
904N/A#ident "%Z%%M% %I% %E% SMI"
904N/A#
904N/A# This makefile drives the production of the smbfs (Server
904N/A# message block file system) kernel module.
904N/A#
904N/A# sparc architecture dependent
904N/A#
904N/A
904N/A#
904N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
904N/A#
904N/AUTSBASE = ../..
904N/A
904N/A#
3469N/A# Define the module and object file sets.
904N/A#
904N/AMODULE = smbfs
904N/AOBJECTS = $(SMBFS_OBJS:%=$(OBJS_DIR)/%)
904N/ALINTS = $(SMBFS_OBJS:%.o=$(LINTS_DIR)/%.ln)
904N/AROOTMODULE = $(USR_FS_DIR)/$(MODULE)
904N/AROOTLINK = $(USR_SYS_DIR)/$(MODULE)
904N/A
904N/A#
904N/A# Include common rules.
904N/A#
904N/Ainclude $(UTSBASE)/sparc/Makefile.sparc
904N/A
4171N/A#
4171N/A# Define targets
4171N/A#
4171N/AALL_TARGET = $(BINARY)
4171N/ALINT_TARGET = $(MODULE).lint
4171N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
#
# Overrides.
#
MODSTUBS_DIR = $(OBJS_DIR)
$(MODSTUBS_O) := AS_CPPFLAGS += -DSMBFS_MODULE
CLEANFILES += $(MODSTUBS_O)
C99MODE = $(C99_ENABLE)
INC_PATH += -I$(UTSBASE)/common/fs/smbclnt
LDFLAGS += -dy -Ndrv/nsmb
.KEEP_STATE:
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
$(ROOTLINK): $(USR_SYS_DIR) $(ROOTMODULE)
-$(RM) $@; ln $(ROOTMODULE) $@
#
# Include common targets.
#
include $(UTSBASE)/sparc/Makefile.targ