Makefile revision b0e063115d0b1a4c7975d20f1c3c2792fe47bda8
0N/A#
1879N/A# CDDL HEADER START
0N/A#
0N/A# The contents of this file are subject to the terms of the
0N/A# Common Development and Distribution License (the "License").
0N/A# You may not use this file except in compliance with the License.
0N/A#
0N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0N/A# or http://www.opensolaris.org/os/licensing.
0N/A# See the License for the specific language governing permissions
0N/A# and limitations under the License.
0N/A#
0N/A# When distributing Covered Code, include this CDDL HEADER in each
0N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0N/A# If applicable, add the following below this CDDL HEADER, with the
0N/A# fields enclosed by brackets "[]" replaced with your own identifying
0N/A# information: Portions Copyright [yyyy] [name of copyright owner]
0N/A#
1472N/A# CDDL HEADER END
1472N/A#
1472N/A#
0N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
0N/A# Use is subject to license terms.
0N/A#
1879N/A# ident "%Z%%M% %I% %E% SMI"
1879N/A#
1879N/A
0N/APROG= cdrw
0N/A
0N/AOBJS= main.o mmc.o device.o transport.o util.o msgs.o misc_scsi.o dumpinfo.o \
0N/A toshiba.o bstream.o options.o trackio.o write_image.o blank.o \
0N/A write_audio.o dae.o copycd.o
4141N/A
4141N/Ainclude ../Makefile.cmd
4141N/Ainclude ../hal/Makefile.hal
0N/A
4141N/ASRCS= $(OBJS:.o=.c)
4141N/A
4141N/ALDLIBS += -ldbus-1 -lhal -lsecdb
4141N/ACFLAGS += $(CCVERBOSE)
4141N/ACPPFLAGS += -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(HAL_DBUS_CPPFLAGS)
4141N/ALINTFLAGS += -um
4141N/A
0N/A$(ROOTBIN)/cdrw := FILEMODE = 04755
0N/A
0N/A.KEEP_STATE:
107N/A
107N/Aall: $(PROG)
0N/A
0N/A$(PROG): $(OBJS)
0N/A $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS) $(CFLAGS)
0N/A $(POST_PROCESS)
0N/A
107N/Ainstall: all $(ROOTPROG)
0N/A
107N/Aclean:
107N/A $(RM) $(OBJS)
107N/A
107N/Alint: lint_SRCS
107N/A
0N/A$(POFILE) : $(SRCS)
107N/A $(RM) $@
107N/A $(COMPILE.cpp) $(SRCS) | $(XGETTEXT) $(XGETFLAGS) -
107N/A $(SED) -e '/^domain/d' messages.po > $@
107N/A
107N/Asb: $(SRCS)
107N/A $(COMPILE.c) -xsbfast $(SRCS)
107N/A
107N/Ainclude ../Makefile.targ
107N/A