Makefile revision 24fe0b3bf671e123467ce1df0b67cadd3614c8e4
8d10c10ec928e4680a0c74280287a17a580120a7Mark Andrews#
dafcb997e390efa4423883dafd100c975c4095d6Mark Andrews# CDDL HEADER START
816e576f77e2c46df3e3d97d65822aa8aded7c4bDavid Lawrence#
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# The contents of this file are subject to the terms of the
5d2568aa9d3218e32bcbe795473e6d2d710a4ab6Mark Andrews# Common Development and Distribution License (the "License").
9c3531d72aeaad6c5f01efe6a1c82023e1379e4dDavid Lawrence# You may not use this file except in compliance with the License.
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson#
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# or http://www.opensolaris.org/os/licensing.
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# See the License for the specific language governing permissions
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# and limitations under the License.
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson#
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# When distributing Covered Code, include this CDDL HEADER in each
36bc6a0a8312de762caf1e984efe15c8e7170d9dAndreas Gustafsson# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
36bc6a0a8312de762caf1e984efe15c8e7170d9dAndreas Gustafsson# If applicable, add the following below this CDDL HEADER, with the
361a4334ec8ef9d678dcd6c94f96547efedb02bdAndreas Gustafsson# fields enclosed by brackets "[]" replaced with your own identifying
361a4334ec8ef9d678dcd6c94f96547efedb02bdAndreas Gustafsson# information: Portions Copyright [yyyy] [name of copyright owner]
361a4334ec8ef9d678dcd6c94f96547efedb02bdAndreas Gustafsson#
76458ec215a57c6806afdd831b9c9a30b93344b0Andreas Gustafsson# CDDL HEADER END
aff4e48c82c1de198a627fe7a57fb6f400d6d3c1Andreas Gustafsson
aff4e48c82c1de198a627fe7a57fb6f400d6d3c1Andreas Gustafsson# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
76458ec215a57c6806afdd831b9c9a30b93344b0Andreas Gustafsson# Use is subject to license terms.
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson#
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# fastfs also lives in cmd/backup, but it's copied here since the backup
2d54cf04fc02db7c369592b6f91bbd1330df3387Andreas Gustafsson# hierarchy can still build some hsm packages, and the code doesn't change
b3651a8e87c12ea0428eeb5cf4b304be5bcd9db0Brian Wellington
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas GustafssonPROG= pmodes
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas GustafssonOBJS= $(PROG).o binsearch.o
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas GustafssonSRCS= $(OBJS:%.o=%.c)
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas GustafssonCLEANFILES += $(OBJS)
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas Gustafsson
bfe7da9c6b20573c2da09ad2e7cac0a54c8cd47bMark Andrewsinclude ../Makefile.tools
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas Gustafsson
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas GustafssonCFLAGS += $(CCVERBOSE)
c5b14e2676e8832de77bf63b8f58890d13a6c1e2Andreas Gustafsson
65dfcdc392b93f9d67684adce8b33a1d8168e67cAndreas Gustafsson.KEEP_STATE:
f11c81f4fe26ae9f1ef990257b3b2cac6ab5be12Mark Andrews
f11c81f4fe26ae9f1ef990257b3b2cac6ab5be12Mark Andrewsall: $(PROG)
f11c81f4fe26ae9f1ef990257b3b2cac6ab5be12Mark Andrews
f11c81f4fe26ae9f1ef990257b3b2cac6ab5be12Mark Andrews$(PROG): $(OBJS)
0e873a120279dbae16ec3773d7c67d473602b7c6Andreas Gustafsson $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
0e873a120279dbae16ec3773d7c67d473602b7c6Andreas Gustafsson $(POST_PROCESS)
0e873a120279dbae16ec3773d7c67d473602b7c6Andreas Gustafsson
0e873a120279dbae16ec3773d7c67d473602b7c6Andreas Gustafssoninstall: all .WAIT $(ROOTONBLDMACHPROG)
0e873a120279dbae16ec3773d7c67d473602b7c6Andreas Gustafsson
76458ec215a57c6806afdd831b9c9a30b93344b0Andreas Gustafssonlint: lint_SRCS
72e278abc7c73059de68017eceae7d5138ee98c1Andreas Gustafsson
72e278abc7c73059de68017eceae7d5138ee98c1Andreas Gustafssonclean:
76458ec215a57c6806afdd831b9c9a30b93344b0Andreas Gustafsson $(RM) $(CLEANFILES)
c5b14e2676e8832de77bf63b8f58890d13a6c1e2Andreas Gustafsson
d075bd326e34600c036c905eea6c80f565ea951fAndreas Gustafssoninclude ../Makefile.targ
d075bd326e34600c036c905eea6c80f565ea951fAndreas Gustafsson