1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# 22# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# ident "%Z%%M% %I% %E% SMI" 26# 27 28LIBRARY = libproc.a 29VERS = .1 30 31CMNOBJS = \ 32 P32ton.o \ 33 Pbrand.o \ 34 Pcontrol.o \ 35 Pcore.o \ 36 Pexecname.o \ 37 Pgcore.o \ 38 Pidle.o \ 39 Pisprocdir.o \ 40 Plwpregs.o \ 41 Pservice.o \ 42 Psymtab.o \ 43 Psymtab_machelf32.o \ 44 $(CMNOBJS64) \ 45 Pscantext.o \ 46 Pstack.o \ 47 Psyscall.o \ 48 Putil.o \ 49 pr_door.o \ 50 pr_exit.o \ 51 pr_fcntl.o \ 52 pr_getitimer.o \ 53 pr_getrctl.o \ 54 pr_getrlimit.o \ 55 pr_getsockname.o \ 56 pr_ioctl.o \ 57 pr_lseek.o \ 58 pr_memcntl.o \ 59 pr_meminfo.o \ 60 pr_mmap.o \ 61 pr_open.o \ 62 pr_pbind.o \ 63 pr_rename.o \ 64 pr_sigaction.o \ 65 pr_stat.o \ 66 pr_statvfs.o \ 67 pr_tasksys.o \ 68 pr_waitid.o \ 69 proc_get_info.o \ 70 proc_names.o \ 71 proc_arg.o \ 72 proc_set.o \ 73 proc_stdio.o 74 75ISAOBJS = \ 76 Pisadep.o 77 78OBJECTS = $(CMNOBJS) $(ISAOBJS) 79 80# include library definitions 81include ../../Makefile.lib 82include ../../Makefile.rootfs 83 84SRCS = $(CMNOBJS:%.o=../common/%.c) $(ISAOBJS:%.o=%.c) 85 86LIBS = $(DYNLIB) $(LINTLIB) 87LDLIBS += -lrtld_db -lelf -lctf -lc 88 89SRCDIR = ../common 90$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) 91 92MAPFILES += mapfile-vers 93 94CFLAGS += $(CCVERBOSE) 95CPPFLAGS += -I$(SRCDIR) 96 97# All interfaces are interposable, therefore don't allow direct binding to 98# libproc. Disable libproc from directly binding to itself, but allow libperl 99# to directly bind to its dependencies (ie. map -Bdirect -> -zdirect). Ensure 100# lazy loading is established (which is enabled automatically with -Bdirect). 101BDIRECT = 102DYNFLAGS += $(BNODIRECT) $(ZDIRECT) $(ZLAZYLOAD) 103 104.KEEP_STATE: 105 106all: $(LIBS) 107 108lint: lintcheck 109 110# include library targets 111include ../../Makefile.targ 112 113objs/%.o pics/%.o: %.c 114 $(COMPILE.c) -o $@ $< 115 $(POST_PROCESS_O) 116