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 2006 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 Pscantext.o \ 44 Pstack.o \ 45 Psyscall.o \ 46 Putil.o \ 47 pr_door.o \ 48 pr_exit.o \ 49 pr_fcntl.o \ 50 pr_getitimer.o \ 51 pr_getrctl.o \ 52 pr_getrlimit.o \ 53 pr_getsockname.o \ 54 pr_ioctl.o \ 55 pr_lseek.o \ 56 pr_memcntl.o \ 57 pr_meminfo.o \ 58 pr_mmap.o \ 59 pr_open.o \ 60 pr_pbind.o \ 61 pr_rename.o \ 62 pr_sigaction.o \ 63 pr_stat.o \ 64 pr_statvfs.o \ 65 pr_tasksys.o \ 66 pr_waitid.o \ 67 proc_get_info.o \ 68 proc_names.o \ 69 proc_arg.o \ 70 proc_set.o \ 71 proc_stdio.o 72 73ISAOBJS = \ 74 Pisadep.o 75 76OBJECTS = $(CMNOBJS) $(ISAOBJS) 77 78# include library definitions 79include ../../Makefile.lib 80include ../../Makefile.rootfs 81 82SRCS = $(CMNOBJS:%.o=../common/%.c) $(ISAOBJS:%.o=%.c) 83 84LIBS = $(DYNLIB) $(LINTLIB) 85LDLIBS += -lrtld_db -lelf -lctf -lc -lzonecfg 86 87SRCDIR = ../common 88$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC) 89 90MAPFILES += mapfile-vers 91 92CFLAGS += $(CCVERBOSE) 93CPPFLAGS += -I$(SRCDIR) 94 95.KEEP_STATE: 96 97all: $(LIBS) 98 99lint: lintcheck 100 101# include library targets 102include ../../Makefile.targ 103 104objs/%.o pics/%.o: %.c 105 $(COMPILE.c) -o $@ $< 106 $(POST_PROCESS_O) 107