1c3a558e7SSue Gleeson# 2c3a558e7SSue Gleeson# CDDL HEADER START 3c3a558e7SSue Gleeson# 4c3a558e7SSue Gleeson# The contents of this file are subject to the terms of the 5c3a558e7SSue Gleeson# Common Development and Distribution License (the "License"). 6c3a558e7SSue Gleeson# You may not use this file except in compliance with the License. 7c3a558e7SSue Gleeson# 8c3a558e7SSue Gleeson# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9c3a558e7SSue Gleeson# or http://www.opensolaris.org/os/licensing. 10c3a558e7SSue Gleeson# See the License for the specific language governing permissions 11c3a558e7SSue Gleeson# and limitations under the License. 12c3a558e7SSue Gleeson# 13c3a558e7SSue Gleeson# When distributing Covered Code, include this CDDL HEADER in each 14c3a558e7SSue Gleeson# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15c3a558e7SSue Gleeson# If applicable, add the following below this CDDL HEADER, with the 16c3a558e7SSue Gleeson# fields enclosed by brackets "[]" replaced with your own identifying 17c3a558e7SSue Gleeson# information: Portions Copyright [yyyy] [name of copyright owner] 18c3a558e7SSue Gleeson# 19c3a558e7SSue Gleeson# CDDL HEADER END 20c3a558e7SSue Gleeson# 21c3a558e7SSue Gleeson# 22c3a558e7SSue Gleeson# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved. 23c3a558e7SSue Gleeson# 24c3a558e7SSue Gleeson 25c3a558e7SSue Gleesoninclude $(SRC)/lib/Makefile.lib 26c3a558e7SSue Gleeson 27c3a558e7SSue GleesonHDRS = libsrpt.h 28c3a558e7SSue GleesonHDRDIR = common 29c3a558e7SSue Gleeson 30c3a558e7SSue GleesonSUBDIRS = $(MACH) 31c3a558e7SSue Gleeson$(BUILD64)SUBDIRS += $(MACH64) 32c3a558e7SSue Gleeson 33c3a558e7SSue Gleesonall := TARGET= all 34c3a558e7SSue Gleesonclean := TARGET= clean 35c3a558e7SSue Gleesonclobber := TARGET= clobber 36c3a558e7SSue Gleesoninstall := TARGET= install 37c3a558e7SSue Gleesoninstall_h := TARGET= install_h 38c3a558e7SSue Gleeson 39c3a558e7SSue Gleeson.KEEP_STATE: 40c3a558e7SSue Gleeson 41*241c90a0SRichard Loweall clean clobber install: $(SUBDIRS) 42c3a558e7SSue Gleeson 43c3a558e7SSue Gleesoninstall_h: $(ROOTHDRS) 44c3a558e7SSue Gleeson 45c3a558e7SSue Gleesoncheck: $(CHECKHDRS) 46c3a558e7SSue Gleeson 47c3a558e7SSue Gleeson$(SUBDIRS): FRC 48c3a558e7SSue Gleeson @cd $@; pwd; $(MAKE) $(TARGET) 49c3a558e7SSue Gleeson 50c3a558e7SSue GleesonFRC: 51c3a558e7SSue Gleeson 52c3a558e7SSue Gleesoninclude $(SRC)/lib/Makefile.targ 53