Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
0N/A#
0N/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#
873N/A# CDDL HEADER END
0N/A#
0N/A#
0N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
0N/A# Use is subject to license terms.
0N/A#
868N/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 \
2214N/A toshiba.o bstream.o options.o trackio.o write_image.o blank.o \
2214N/A write_audio.o dae.o copycd.o
0N/A
0N/Ainclude ../Makefile.cmd
0N/Ainclude ../hal/Makefile.hal
0N/A
0N/ASRCS= $(OBJS:.o=.c)
0N/A
0N/ALDLIBS += -lhal -lsecdb
0N/ANONLINTLDLIBS = -ldbus-1
0N/ACFLAGS += $(CCVERBOSE)
0N/ACERRWARN += -_gcc=-Wno-uninitialized
0N/ACERRWARN += -_gcc=-Wno-parentheses
2214N/ACPPFLAGS += -D_REENTRANT -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 $(HAL_DBUS_CPPFLAGS)
2214N/ALINTFLAGS += -um
2214N/A
2214N/A$(ROOTBIN)/cdrw := FILEMODE = 04755
0N/A
2214N/A.KEEP_STATE:
2214N/A
2214N/Aall: $(PROG)
2214N/A
2214N/A$(PROG): $(OBJS)
2214N/A $(LINK.c) -o $(PROG) $(OBJS) $(LDLIBS) $(NONLINTLDLIBS) $(CFLAGS)
2214N/A $(POST_PROCESS)
2214N/A
2214N/Ainstall: all $(ROOTPROG)
2214N/A
2214N/Aclean:
2214N/A $(RM) $(OBJS)
2214N/A
0N/Alint: lint_SRCS
0N/A
0N/A$(POFILE) : $(SRCS)
0N/A $(RM) $@
0N/A $(COMPILE.cpp) $(SRCS) | $(XGETTEXT) $(XGETFLAGS) -
0N/A $(SED) -e '/^domain/d' messages.po > $@
0N/A
0N/Asb: $(SRCS)
0N/A $(COMPILE.c) -xsbfast $(SRCS)
0N/A
2214N/Ainclude ../Makefile.targ
2214N/A