355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# CDDL HEADER START
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# The contents of this file are subject to the terms of the
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# Common Development and Distribution License (the "License").
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# You may not use this file except in compliance with the License.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# or http://www.opensolaris.org/os/licensing.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# See the License for the specific language governing permissions
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# and limitations under the License.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# When distributing Covered Code, include this CDDL HEADER in each
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# If applicable, add the following below this CDDL HEADER, with the
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# fields enclosed by brackets "[]" replaced with your own identifying
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# information: Portions Copyright [yyyy] [name of copyright owner]
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# CDDL HEADER END
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
3d09a4fec6be19a6f09e277d5d5d17942bb4abf4sonam gupta - Sun Microsystems - Bangalore India# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs# Use is subject to license terms.
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs#
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobsLIBRARY = libipp-listener.a
355b4669e025ff377602b6fc7caaf30dbc218371jacobsVERS = .0
355b4669e025ff377602b6fc7caaf30dbc218371jacobsOBJECTS = \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs cancel-job.o common.o create-job.o cups-accept-jobs.o \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs cups-get-classes.o cups-get-default.o cups-get-printers.o \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs cups-move-job.o cups-reject-jobs.o disable-printer.o enable-printer.o \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs get-job-attributes.o get-jobs.o get-printer-attributes.o hold-job.o \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs ipp-listener.o pause-printer.o print-job.o purge-jobs.o release-job.o \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs restart-job.o resume-printer.o send-document.o set-job-attributes.o \
355b4669e025ff377602b6fc7caaf30dbc218371jacobs set-printer-attributes.o validate-job.o
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobsinclude ../../../Makefile.lib
355b4669e025ff377602b6fc7caaf30dbc218371jacobsinclude ../../../Makefile.rootfs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
f808c858fa61e7769218966759510a8b1190dfcfrafSRCDIR = ../common
f808c858fa61e7769218966759510a8b1190dfcfraf
355b4669e025ff377602b6fc7caaf30dbc218371jacobsROOTLIBDIR= $(ROOT)/usr/lib
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobsLIBS = $(DYNLIB)
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs$(LINTLIB):= SRCS = $(SRCDIR)/$(LINTSRC)
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobsCFLAGS += $(CCVERBOSE)
355b4669e025ff377602b6fc7caaf30dbc218371jacobsCPPFLAGS += -DSOLARIS_PRIVATE_POST_0_9
355b4669e025ff377602b6fc7caaf30dbc218371jacobsCPPFLAGS += -I$(SRCDIR)
355b4669e025ff377602b6fc7caaf30dbc218371jacobsCPPFLAGS += -I../../libpapi-common/common
355b4669e025ff377602b6fc7caaf30dbc218371jacobsCPPFLAGS += -I../../libipp-core/common
f808c858fa61e7769218966759510a8b1190dfcfraf
7014882c6a3672fd0e5d60200af8643ae53c5928Richard LoweCERRWARN += -_gcc=-Wno-unused-variable
7014882c6a3672fd0e5d60200af8643ae53c5928Richard LoweCERRWARN += -_gcc=-Wno-uninitialized
7014882c6a3672fd0e5d60200af8643ae53c5928Richard Lowe
f808c858fa61e7769218966759510a8b1190dfcfrafMAPFILES = $(SRCDIR)/mapfile
f808c858fa61e7769218966759510a8b1190dfcfraf
3d09a4fec6be19a6f09e277d5d5d17942bb4abf4sonam gupta - Sun Microsystems - Bangalore IndiaLDLIBS += -lipp-core -lpapi -lc -lsocket -lnsl
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobs.KEEP_STATE:
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobsall: $(LIBS)
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobslint: lintcheck
355b4669e025ff377602b6fc7caaf30dbc218371jacobs
355b4669e025ff377602b6fc7caaf30dbc218371jacobsinclude ../../../Makefile.targ