17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 575e45495Sab196087# Common Development and Distribution License (the "License"). 675e45495Sab196087# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 21*24fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 227c478bd9Sstevel@tonic-gate# Use is subject to license terms. 237c478bd9Sstevel@tonic-gate# 247c478bd9Sstevel@tonic-gate 257c478bd9Sstevel@tonic-gateinclude ../../../Makefile.master 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gateROOTDEMODIRBASE= $(ROOT)/usr/demo/link_audit 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gateDEMOFILES= \ 307c478bd9Sstevel@tonic-gate 00README \ 317c478bd9Sstevel@tonic-gate Makefile \ 327c478bd9Sstevel@tonic-gate man/perfcnt.man \ 337c478bd9Sstevel@tonic-gate man/symbindrep.man \ 347c478bd9Sstevel@tonic-gate man/dumpbind.man \ 357c478bd9Sstevel@tonic-gate src/bindings.c \ 367c478bd9Sstevel@tonic-gate src/bindings.h \ 377c478bd9Sstevel@tonic-gate src/dumpbind.c \ 387c478bd9Sstevel@tonic-gate src/env.c \ 397c478bd9Sstevel@tonic-gate src/env.h \ 407c478bd9Sstevel@tonic-gate src/hash.c \ 417c478bd9Sstevel@tonic-gate src/hash.h \ 427c478bd9Sstevel@tonic-gate src/sotruss.ksh \ 437c478bd9Sstevel@tonic-gate src/mach.h \ 447c478bd9Sstevel@tonic-gate src/perfcnt.c \ 457c478bd9Sstevel@tonic-gate src/perfcnt.ksh \ 467c478bd9Sstevel@tonic-gate src/symbindrep.c \ 477c478bd9Sstevel@tonic-gate src/symbindrep.ksh \ 487c478bd9Sstevel@tonic-gate src/truss.c \ 497c478bd9Sstevel@tonic-gate src/who.c \ 507c478bd9Sstevel@tonic-gate src/who.h \ 517c478bd9Sstevel@tonic-gate src/whocalls.ksh 527c478bd9Sstevel@tonic-gate 537c478bd9Sstevel@tonic-gateROOTDEMODIRS= $(ROOTDEMODIRBASE) .WAIT \ 547c478bd9Sstevel@tonic-gate $(ROOTDEMODIRBASE)/man \ 557c478bd9Sstevel@tonic-gate $(ROOTDEMODIRBASE)/src 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gateROOTDEMOFILES= $(DEMOFILES:%=$(ROOTDEMODIRBASE)/%) 587c478bd9Sstevel@tonic-gate 597c478bd9Sstevel@tonic-gate$(ROOTDEMODIRS) := DIRMODE = 755 607c478bd9Sstevel@tonic-gate 617c478bd9Sstevel@tonic-gate 627c478bd9Sstevel@tonic-gate 637c478bd9Sstevel@tonic-gateSUBDIRS= $(MACH) 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gateall:= TARGET= all 667c478bd9Sstevel@tonic-gateinstall:= TARGET= install 677c478bd9Sstevel@tonic-gatepackage:= TARGET= package 687c478bd9Sstevel@tonic-gateclean:= TARGET= clean 697c478bd9Sstevel@tonic-gateclobber:= TARGET= clobber 707c478bd9Sstevel@tonic-gatelint:= TARGET= lint 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gate.PARALLEL: $(ROOTDEMOFILES) 737c478bd9Sstevel@tonic-gate 747c478bd9Sstevel@tonic-gate.KEEP_STATE: 757c478bd9Sstevel@tonic-gate 7675e45495Sab196087all clean clobber lint : \ 7775e45495Sab196087 $(SUBDIRS) 7875e45495Sab196087 7975e45495Sab196087package install : \ 807c478bd9Sstevel@tonic-gate $(ROOTDEMODIRS) .WAIT $(SUBDIRS) $(ROOTDEMOFILES) 817c478bd9Sstevel@tonic-gate 827c478bd9Sstevel@tonic-gate$(SUBDIRS): FRC 837c478bd9Sstevel@tonic-gate @cd $@; pwd; $(MAKE) $(TARGET) 847c478bd9Sstevel@tonic-gate @if [ -d $(MACH64) ]; then \ 857c478bd9Sstevel@tonic-gate cd $(MACH64); pwd; $(MAKE) $(TARGET); \ 867c478bd9Sstevel@tonic-gate else /bin/true; fi 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate$(ROOTDEMODIRS): 897c478bd9Sstevel@tonic-gate $(INS.dir) 907c478bd9Sstevel@tonic-gate 917c478bd9Sstevel@tonic-gate$(ROOTDEMODIRBASE)/man/%: man/% 927c478bd9Sstevel@tonic-gate $(INS.file) 937c478bd9Sstevel@tonic-gate 947c478bd9Sstevel@tonic-gate$(ROOTDEMODIRBASE)/src/%: common/% 957c478bd9Sstevel@tonic-gate $(INS.file) 967c478bd9Sstevel@tonic-gate 977c478bd9Sstevel@tonic-gate$(ROOTDEMODIRBASE)/%: common/% 987c478bd9Sstevel@tonic-gate $(INS.file) 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gate$(ROOTDEMODIRBASE)/%: common/%.demo 1017c478bd9Sstevel@tonic-gate $(INS.rename) 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gateFRC: 104