Makefile revision 1
1008N/A#
1008N/A# CDDL HEADER START
1008N/A#
1008N/A# The contents of this file are subject to the terms of the
1008N/A# Common Development and Distribution License (the "License").
1008N/A# You may not use this file except in compliance with the License.
1008N/A#
1008N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
1008N/A# or http://www.opensolaris.org/os/licensing.
1008N/A# See the License for the specific language governing permissions
1008N/A# and limitations under the License.
1008N/A#
1008N/A# When distributing Covered Code, include this CDDL HEADER in each
1008N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1008N/A# If applicable, add the following below this CDDL HEADER, with the
1008N/A# fields enclosed by brackets "[]" replaced with your own identifying
1008N/A# information: Portions Copyright [yyyy] [name of copyright owner]
1008N/A#
1008N/A# CDDL HEADER END
1008N/A#
1008N/A#
1008N/A# Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
1008N/A#
1008N/A# cmd/powertop/Makefile
1008N/A#
1008N/A
1008N/APROG = powertop
1008N/A
1008N/Ainclude ../Makefile.cmd
1008N/A
1008N/A$(BUILD64)SUBDIRS += $(MACH64)
1008N/A
1008N/Aall := TARGET = all
1008N/Ainstall := TARGET = install
1255N/Aclean := TARGET = clean
1255N/Aclobber := TARGET = clobber
1008N/Alint := TARGET = lint
1255N/A
1008N/A.KEEP_STATE:
1255N/A
1008N/Aall clean clobber lint: $(SUBDIRS)
1008N/A
1008N/Ainstall: $(SUBDIRS)
1008N/A -$(RM) $(ROOTPROG)
1008N/A -$(LN) $(ROOTPROG64) $(ROOTPROG)
1008N/A
1255N/A$(SUBDIRS): FRC
1255N/A @cd $@; pwd; $(MAKE) $(TARGET)
1255N/A
1255N/AFRC:
1255N/A
1255N/Ainclude ../Makefile.targ
1255N/A