Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
6101N/A#
6101N/A# CDDL HEADER START
6101N/A#
6101N/A# The contents of this file are subject to the terms of the
6101N/A# Common Development and Distribution License, Version 1.0 only
6101N/A# (the "License"). You may not use this file except in compliance
6101N/A# with the License.
6101N/A#
6101N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6101N/A# or http://www.opensolaris.org/os/licensing.
6101N/A# See the License for the specific language governing permissions
6101N/A# and limitations under the License.
6101N/A#
6101N/A# When distributing Covered Code, include this CDDL HEADER in each
6101N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6101N/A# If applicable, add the following below this CDDL HEADER, with the
6101N/A# fields enclosed by brackets "[]" replaced with your own identifying
6101N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6101N/A#
6101N/A# CDDL HEADER END
6101N/A#
6101N/A#
6101N/A# Copyright 2002-2003 Sun Microsystems, Inc. All rights reserved.
6101N/A# Use is subject to license terms.
6101N/A#
6101N/A
6101N/APROG= ramdiskadm
6101N/AOBJS= main.o utils.o
6101N/ASRCS= $(OBJS:%.o=%.c)
6101N/APOFILES= $(OBJS:%.o=%.po)
6101N/A
6101N/Ainclude ../Makefile.cmd
6101N/A
6101N/ALDLIBS += -ldevinfo
6101N/ACERRWARN += -_gcc=-Wno-uninitialized
6101N/A
6101N/A.KEEP_STATE:
6101N/A
6101N/Aall: $(PROG)
6101N/A
6101N/A$(PROG): $(OBJS)
6101N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
6101N/A $(POST_PROCESS)
6101N/A
6101N/Ainstall: all $(ROOTUSRSBINPROG)
6101N/A
6101N/A$(POFILE): $(POFILES)
6101N/A $(RM) $@
6101N/A cat $(POFILES) > $@
6101N/A
6101N/Aclean:
6101N/A $(RM) $(OBJS)
6101N/A
6101N/Alint: lint_SRCS
6101N/A
6101N/Ainclude ../Makefile.targ
6101N/A