1*40cb5e5dSvi117747# 2*40cb5e5dSvi117747# CDDL HEADER START 3*40cb5e5dSvi117747# 4*40cb5e5dSvi117747# The contents of this file are subject to the terms of the 5*40cb5e5dSvi117747# Common Development and Distribution License (the "License"). 6*40cb5e5dSvi117747# You may not use this file except in compliance with the License. 7*40cb5e5dSvi117747# 8*40cb5e5dSvi117747# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9*40cb5e5dSvi117747# or http://www.opensolaris.org/os/licensing. 10*40cb5e5dSvi117747# See the License for the specific language governing permissions 11*40cb5e5dSvi117747# and limitations under the License. 12*40cb5e5dSvi117747# 13*40cb5e5dSvi117747# When distributing Covered Code, include this CDDL HEADER in each 14*40cb5e5dSvi117747# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15*40cb5e5dSvi117747# If applicable, add the following below this CDDL HEADER, with the 16*40cb5e5dSvi117747# fields enclosed by brackets "[]" replaced with your own identifying 17*40cb5e5dSvi117747# information: Portions Copyright [yyyy] [name of copyright owner] 18*40cb5e5dSvi117747# 19*40cb5e5dSvi117747# CDDL HEADER END 20*40cb5e5dSvi117747# 21*40cb5e5dSvi117747# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 22*40cb5e5dSvi117747# Use is subject to license terms. 23*40cb5e5dSvi117747# 24*40cb5e5dSvi117747# ident "%Z%%M% %I% %E% SMI" 25*40cb5e5dSvi117747# 26*40cb5e5dSvi117747 27*40cb5e5dSvi117747LIBRARY = libsip.a 28*40cb5e5dSvi117747VERS = .1 29*40cb5e5dSvi117747OBJECTS = sip_headers.o sip_msg.o sip_gids.o \ 30*40cb5e5dSvi117747 sip_timeout.o sip_xaction_state_mc.o sip_xaction.o \ 31*40cb5e5dSvi117747 sip_hash.o sip_itf.o sip_ui.o sip_reass.o sip_dialog.o \ 32*40cb5e5dSvi117747 sip_dialog_ui.o sip_xaction_ui.o sip_parse_generic.o \ 33*40cb5e5dSvi117747 sip_parse_uri.o sip_uri_ui.o sip_parse_hdrs.o \ 34*40cb5e5dSvi117747 sip_add_hdrs.o sip_hdrs_ui.o 35*40cb5e5dSvi117747 36*40cb5e5dSvi117747include ../../Makefile.lib 37*40cb5e5dSvi117747 38*40cb5e5dSvi117747SRCDIR = ../common 39*40cb5e5dSvi117747LIBS = $(DYNLIB) $(LINTLIB) 40*40cb5e5dSvi117747$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) 41*40cb5e5dSvi117747LDLIBS += -lmd5 -lc 42*40cb5e5dSvi117747 43*40cb5e5dSvi117747CFLAGS += -v -DOS='"solaris"' -D__OS_solaris 44*40cb5e5dSvi117747 45*40cb5e5dSvi117747.KEEP_STATE: 46*40cb5e5dSvi117747 47*40cb5e5dSvi117747all: $(LIBS) 48*40cb5e5dSvi117747 49*40cb5e5dSvi117747lint: lintcheck 50*40cb5e5dSvi117747 51*40cb5e5dSvi117747include ../../Makefile.targ 52