Makefile revision 2654012f83cec5dc15b61dfe3e4a4915f186e7a6
2521N/A#
2521N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
2521N/A# Use is subject to license terms.
2521N/A#
2521N/A
2521N/A#
2521N/A# BSD 3 Clause License
2521N/A#
2521N/A# Copyright (c) 2007, The Storage Networking Industry Association.
2521N/A#
2521N/A# Redistribution and use in source and binary forms, with or without
2521N/A# modification, are permitted provided that the following conditions
2521N/A# are met:
2521N/A# - Redistributions of source code must retain the above copyright
2521N/A# notice, this list of conditions and the following disclaimer.
2521N/A#
2521N/A# - Redistributions in binary form must reproduce the above copyright
2521N/A# notice, this list of conditions and the following disclaimer in
2521N/A# the documentation and/or other materials provided with the
2521N/A# distribution.
2521N/A#
2521N/A# - Neither the name of The Storage Networking Industry Association (SNIA)
2521N/A# nor the names of its contributors may be used to endorse or promote
2521N/A# products derived from this software without specific prior written
2521N/A# permission.
2521N/A#
2521N/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2892N/A# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2892N/A# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2521N/A# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
2521N/A# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2521N/A# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2892N/A# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2521N/A# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
3533N/A# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2521N/A# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2521N/A# POSSIBILITY OF SUCH DAMAGE.
2521N/A#
2521N/Ainclude ../Makefile.cmd
2899N/A
2899N/APROG= ndmpadm
2899N/AOBJS= ndmpadm_main.o ndmpadm_print.o
2521N/ASRCS = $(OBJS:.o=.c)
2521N/APOFILES= ndmpadm_main.po ndmpadm_print.po
2521N/APOFILE= ndmpadm.po
2521N/A
2521N/ALDLIBS += -lndmp
2521N/A
2521N/A.KEEP_STATE:
2521N/A
2521N/Aall: $(PROG)
2521N/A
2521N/A$(PROG): $(OBJS)
2521N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
2521N/A $(POST_PROCESS)
2521N/A
2521N/Ainstall: all $(ROOTUSRSBINPROG)
2521N/A
2521N/A$(POFILE): $(POFILES)
2521N/A $(RM) $@
2663N/A $(CAT) $(POFILES) > $@
2663N/A
2663N/Aclean:
2892N/A $(RM) $(OBJS) $(POFILES)
2521N/A
2521N/Alint: lint_SRCS
2521N/A
2521N/Ainclude ../Makefile.targ
2521N/A