Makefile revision f808c858fa61e7769218966759510a8b1190dfcf
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# CDDL HEADER START
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# The contents of this file are subject to the terms of the
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# Common Development and Distribution License (the "License").
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# You may not use this file except in compliance with the License.
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# or http://www.opensolaris.org/os/licensing.
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# See the License for the specific language governing permissions
ec5ec8dd5bce3df1c42ff4f594dd7b69b9906e5bChristian Maeder# and limitations under the License.
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# When distributing Covered Code, include this CDDL HEADER in each
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
40623ccebed1ff36996641f957a40dfd6f536073Christian Maeder# If applicable, add the following below this CDDL HEADER, with the
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# fields enclosed by brackets "[]" replaced with your own identifying
560866529d0162896a3255aaa0f6e24177f0c151Christian Maeder# information: Portions Copyright [yyyy] [name of copyright owner]
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# CDDL HEADER END
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# Use is subject to license terms.
560866529d0162896a3255aaa0f6e24177f0c151Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# ident "%Z%%M% %I% %E% SMI"
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# As per $(SRC)/lib/README.Makefiles, this could've been as easy as
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder#include $(SRC)/lib/Makefile.spec.arch
80d0480a60b409d9cf256d0a6c411dd99c672124Christian Maeder#
45cd3810666369a5a73b05ca43333de38f5ed342Christian Maeder# ... but we don't want/need to deliver 64 bit libraries; thus we need
# to override the inclusion of the Makefile and build only the targets
# for $(MACH) instead of $(MACH)_ARCHITECTURES
#
all := TARGET= all
install := TARGET= install
clean := TARGET= clean
clobber := TARGET= clobber
lint := TARGET= lint
.KEEP_STATE:
all install clean clobber: $(MACH)
$(MACH): FRC
@cd $@; pwd; $(MAKE) $(TARGET)
IGNORE= _msg catalog install_h delete \
package tcov debug private_h \
check analyse test dynamic lint
$(IGNORE):
FRC: