Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
4632N/A#
4632N/A# CDDL HEADER START
4632N/A#
4632N/A# The contents of this file are subject to the terms of the
4632N/A# Common Development and Distribution License, Version 1.0 only
4632N/A# (the "License"). You may not use this file except in compliance
4632N/A# with the License.
4632N/A#
4632N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4632N/A# or http://www.opensolaris.org/os/licensing.
4632N/A# See the License for the specific language governing permissions
4632N/A# and limitations under the License.
4632N/A#
4632N/A# When distributing Covered Code, include this CDDL HEADER in each
4632N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4632N/A# If applicable, add the following below this CDDL HEADER, with the
4632N/A# fields enclosed by brackets "[]" replaced with your own identifying
4632N/A# information: Portions Copyright [yyyy] [name of copyright owner]
4632N/A#
4632N/A# CDDL HEADER END
4632N/A#
4632N/A#
4632N/A# Copyright 2005 Sun Microsystems, Inc. All rights reserved.
4632N/A# Use is subject to license terms.
4632N/A#
4632N/A
4632N/A#
4632N/A#ident "%Z%%M% %I% %E% SMI"
4632N/A#
4632N/A
4632N/A# This makefile drives the pic16f747 build.
4632N/A#
4632N/A# Path to the base of the uts directory tree (usually /usr/src/uts).
4632N/A
4632N/AUTSBASE = ../..
4632N/A
4632N/A#
4632N/A# Define the module and object file sets.
4632N/A#
4632N/AMODULE = pic16f747
4632N/AOBJECTS = $(PIC16F747_OBJS:%=$(OBJS_DIR)/%)
4632N/ALINTS = $(PIC16F747_OBJS:%.o=$(LINTS_DIR)/%.ln)
4632N/AROOTMODULE = $(ROOT_PSM_DRV_DIR)/$(MODULE)
4632N/A
4632N/A#
4632N/A# Include common rules.
4632N/A#
4632N/Ainclude $(UTSBASE)/sun4u/Makefile.sun4u
4632N/A
4632N/A#
4632N/A# Define targets
4632N/A#
4632N/AALL_TARGET = $(BINARY)
4632N/ALINT_TARGET = $(MODULE).lint
4632N/AINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
4632N/A
4632N/A#
4632N/A# lint pass one enforcement
4632N/A#
4632N/ACFLAGS += $(CCVERBOSE)
4632N/A
4632N/A#
4632N/A# Default build targets.
4632N/A#
4632N/A.KEEP_STATE:
4632N/A
4632N/Adef: $(DEF_DEPS)
all: $(ALL_DEPS)
clean: $(CLEAN_DEPS)
clobber: $(CLOBBER_DEPS)
lint: $(LINT_DEPS)
modlintlib: $(MODLINTLIB_DEPS)
clean.lint: $(CLEAN_LINT_DEPS)
install: $(INSTALL_DEPS)
#
# Include common targets.
#
include $(UTSBASE)/sun4u/Makefile.targ